From 7a7cdaa2964d19b0e7a32c05ea4bce6b0c765069 Mon Sep 17 00:00:00 2001 From: iRaven Date: Sat, 22 Feb 2025 14:11:09 -0600 Subject: [PATCH] adding more packages --- linux/compliance.yaml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/linux/compliance.yaml b/linux/compliance.yaml index 26858a7..45ecbc0 100644 --- a/linux/compliance.yaml +++ b/linux/compliance.yaml @@ -40,13 +40,18 @@ # cmd: echo "{{ ansiblesvc_key }}" > /home/ansible/.ssh/authorized_keys # creates: /home/ansible/.ssh/authorized_keys - # Give ansible sudo rights with no password required. - - name: Install sudo if not already installed. + # Add required packages because Debian is lame + - name: Install standard packages if not already installed. # Looking at you LXCs. >.> ansible.builtin.package: - name: sudo + name: + - sudo + - curl + - net-tools + - wget state: present - + + # Give ansible sudo rights with no password required. - name: Add sudo rights with no password for deployment user. lineinfile: dest: /etc/sudoers