Skip to content

Commit

Permalink
ci: Fix implicit octal values in main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
HVSharma12 authored and richm committed Oct 26, 2023
1 parent f20f848 commit 16d3899
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@
file:
path: "{{ __kernel_settings_profile_dir }}"
state: directory
mode: 0755
mode: "0755"

- name: Generate a configuration for kernel settings
template:
src: "{{ __kernel_settings_profile_src }}.j2"
dest: "{{ __kernel_settings_profile_filename }}"
force: false
mode: 0644
mode: "0644"

- name: Get current config
slurp:
Expand Down

0 comments on commit 16d3899

Please sign in to comment.