Skip to content

Commit

Permalink
! fix implicit octal permissions
Browse files Browse the repository at this point in the history
  • Loading branch information
langchr86 committed Jul 19, 2023
1 parent afe233d commit 11f1d9e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ansible/roles/docker/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@
ansible.builtin.copy:
src: daemon.json
dest: "{{ docker_daemon_config_folder }}/daemon.json"
mode: 0644
mode: "644"
notify:
- RestartDocker
2 changes: 1 addition & 1 deletion ansible/roles/ssh/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@
regexp: "^PubkeyAcceptedKeyTypes"
insertafter: EOF
create: true
mode: '0644'
mode: "644"
notify: RestartSshd

0 comments on commit 11f1d9e

Please sign in to comment.