From fbf48d7c3d52012d9c7396450b85051b1a1561aa Mon Sep 17 00:00:00 2001 From: Justin Date: Tue, 28 Jan 2025 14:41:16 -0600 Subject: [PATCH] Updated --- update.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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