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.
17 lines
322 B
YAML
17 lines
322 B
YAML
7 years ago
|
---
|
||
|
- 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
|