Skip to content

Commit

Permalink
Fix octal value parsing
Browse files Browse the repository at this point in the history
This needs to be quoted to avoid it being parsed by YAML.
  • Loading branch information
alexblackie committed Oct 9, 2023
1 parent c26207d commit c54abc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
ansible.builtin.copy:
content: install {{ item }} /bin/true
dest: /etc/modprobe.d/99_disable_{{ item }}
mode: 0400
mode: "0400"
with_items: "{{ linux_hardening_disable_modules }}"
tags:
- security
Expand Down

0 comments on commit c54abc9

Please sign in to comment.