This commit is contained in:
Justin 2025-01-28 14:41:16 -06:00
parent 06af578eb8
commit fbf48d7c3d
1 changed files with 12 additions and 0 deletions

View File

@ -65,6 +65,18 @@
autoclean: 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
hosts: localhost