Skip to content

Commit

Permalink
Make File Permissions Mode a String (#4004)
Browse files Browse the repository at this point in the history
  • Loading branch information
P-N-L committed Feb 5, 2024
1 parent 2ce9450 commit 48a7c4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ansiblelint/rules/risky_file_permissions.md
Expand Up @@ -50,7 +50,7 @@ Modules that are checked:
- name: Safe example of using ini_file (2nd solution)
community.general.ini_file:
path: foo
mode: 0600 # explicitly sets the desired permissions, to make the results predictable
mode: "0600" # explicitly sets the desired permissions, to make the results predictable

- name: Safe example of using copy (3rd solution)
ansible.builtin.copy:
Expand Down

0 comments on commit 48a7c4f

Please sign in to comment.