From 17497d458b71afc2844a750e84d90314097506ad Mon Sep 17 00:00:00 2001 From: iRaven4522 Date: Sat, 17 Aug 2024 16:51:11 -0500 Subject: [PATCH] never mind that didn't work --- linux/compliance.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/linux/compliance.yaml b/linux/compliance.yaml index 828a76a..5694c5b 100644 --- a/linux/compliance.yaml +++ b/linux/compliance.yaml @@ -18,10 +18,11 @@ # Ansible user SSH pub key # This is a really stupid way to do it, but alas. # This uses an environment variable named ansiblesvc_key in Semaphore which has the ssh-rsa pubkey. - - name: Add deployment user's SSH key. + - name: Create ssh directory for deployment user. file: path: /home/ansible/.ssh state: directory + - name: Add deployment user's SSH key. shell: cmd: echo "{{ ansiblesvc_key }}" > /home/ansible/.ssh/authorized_keys creates: /home/ansible/.ssh/authorized_keys @@ -62,10 +63,11 @@ # Sysadmin user SSH pub key # This is a really stupid way to do it, but alas. # This uses an environment variable named nhadmin_key in Semaphore which has the ssh-rsa pubkey. - - name: Add nhadmin user's SSH key. + - name: Create ssh directory for nhadmin. file: path: /home/nhadmin/.ssh state: directory + - name: Add nhadmin user's SSH key. shell: cmd: echo "{{ nhadmin_key }}" > /home/nhadmin/.ssh/authorized_keys creates: /home/nhadmin/.ssh/authorized_keys