moving everything to active or retired vs incubating and graduated
All checks were successful
Reese's Arch Toolbox / build-and-push-arch-toolbox (push) Successful in 14s
All checks were successful
Reese's Arch Toolbox / build-and-push-arch-toolbox (push) Successful in 14s
This commit is contained in:
22
retired/systemd_iperf3/install_iperf3.yaml
Normal file
22
retired/systemd_iperf3/install_iperf3.yaml
Normal file
@@ -0,0 +1,22 @@
|
||||
- name: Install iperf3 service
|
||||
hosts: yellow
|
||||
vars_files:
|
||||
- vars.yaml
|
||||
tasks:
|
||||
- name: Ensure iperf3 is installed
|
||||
ansible.builtin.dnf:
|
||||
name:
|
||||
- iperf3
|
||||
state: present
|
||||
- name: Copy iperf3.service
|
||||
template:
|
||||
src: iperf3.service
|
||||
dest: /etc/systemd/system/iperf3.service
|
||||
owner: root
|
||||
group: root
|
||||
mode: '0644'
|
||||
- name: Reload iperf3 timer
|
||||
ansible.builtin.systemd_service:
|
||||
state: restarted
|
||||
name: iperf3.service
|
||||
enabled: true
|
||||
Reference in New Issue
Block a user