Skip to content

Commit

Permalink
refactor: fix forbidden implicit octal value
Browse files Browse the repository at this point in the history
Fix ansible-lint yaml[octal-values]

https://ansible.readthedocs.io/projects/lint/rules/risky-octal/

Signed-off-by: jo <ljonas@riseup.net>
  • Loading branch information
jooola committed Sep 22, 2023
1 parent 01631c7 commit ac5fb6f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion molecule/default/create.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@
{{ instance_conf | to_json | from_json | to_yaml }}
dest: "{{ molecule_instance_config }}"
mode: 0600
mode: "0600"
2 changes: 1 addition & 1 deletion molecule/default/destroy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@
{{ instance_conf | to_json | from_json | to_yaml }}
dest: "{{ molecule_instance_config }}"
mode: 0600
mode: "0600"
when: server.changed | default(false) | bool # noqa no-handler

0 comments on commit ac5fb6f

Please sign in to comment.