From d4f320bbf1c6f7ba2c91e258d1765502062c8426 Mon Sep 17 00:00:00 2001 From: Bo-Chun Louis Chen <louistw@uab.edu> Date: Tue, 10 Dec 2024 16:13:42 -0600 Subject: [PATCH] style: use FQCN module name --- ansible/roles/ssh_host_keys/tasks/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ansible/roles/ssh_host_keys/tasks/main.yml b/ansible/roles/ssh_host_keys/tasks/main.yml index 0a9632e..462c09a 100644 --- a/ansible/roles/ssh_host_keys/tasks/main.yml +++ b/ansible/roles/ssh_host_keys/tasks/main.yml @@ -1,6 +1,6 @@ --- - name: Ensure destination directory exists only if not present - file: + ansible.builtin.file: path: /tmp/ssh_keys state: directory mode: '0755' @@ -24,7 +24,7 @@ ansible_python_interpreter: /usr/bin/python3 - name: Unpack SSH host keys to /etc/ssh - unarchive: + ansible.builtin.unarchive: src: "/tmp/ssh_keys/{{ SSH_HOST_KEYS_S3_OBJECT }}" dest: "/etc/ssh" remote_src: yes -- GitLab