You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ffmyk-ansible/roles/install_iperf3/tasks/main.yml

17 lines
322 B
YAML

---
- name: install iperf3
pacman:
name: iperf3
state: present
- name: copy iperf3 systemd-service
copy:
src: iperf3-tcp.service
dest: /etc/systemd/system/iperf3-tcp.service
- name: start and enable iperf3 tcp
systemd:
name: iperf3-tcp.service
enabled: yes
state: started