Skip to content
Snippets Groups Projects
Verified Commit 5f2ae120 authored by Chris Croome's avatar Chris Croome
Browse files

fix for docker umask

parent 38569ace
No related branches found
No related tags found
No related merge requests found
Pipeline #28317 passed
......@@ -71,9 +71,10 @@
block:
- name: Docker gpg key dearmored
ansible.builtin.shell: |
ansible.builtin.shell: |-
set -e -o pipefail
gpg --dearmor < /root/docker.asc > /etc/apt/keyrings/docker.gpg
chmod 644 /etc/apt/keyrings/docker.gpg
args:
executable: "{{ ansible_local.bash.path }}"
when: ( docker_tmp_asc_file.changed | bool ) or ( not docker_gpg_file.stat.exists | bool )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment