diff --git a/update.yaml b/update.yaml index 413d174..14ebc1e 100644 --- a/update.yaml +++ b/update.yaml @@ -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