Updated
This commit is contained in:
parent
06af578eb8
commit
fbf48d7c3d
12
update.yaml
12
update.yaml
|
@ -65,6 +65,18 @@
|
||||||
autoclean: true
|
autoclean: true
|
||||||
autoremove: true
|
autoremove: true
|
||||||
|
|
||||||
|
- name: installing net-tools on all
|
||||||
|
hosts: all
|
||||||
|
become: yes
|
||||||
|
tasks:
|
||||||
|
- name: running apt
|
||||||
|
when: ansible_pkg_mgr == 'apt'
|
||||||
|
ansible.builtin.apt:
|
||||||
|
name: net-tools
|
||||||
|
state: latest
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- name: Send completed update
|
- name: Send completed update
|
||||||
hosts: localhost
|
hosts: localhost
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue