Skip to content

Commit

Permalink
chore: fix yaml[octal-values]
Browse files Browse the repository at this point in the history
  • Loading branch information
juju4 committed Nov 23, 2024
1 parent 65d05d3 commit 391e452
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tasks/debian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
ansible.builtin.get_url:
url: "{{ falco_repo_key }}"
dest: /etc/apt/trusted.gpg.d/falco.asc
mode: 0644
mode: '0644'
register: dl_result
until: dl_result is success
when: proxy_url is not defined or not proxy_url | string
Expand All @@ -32,7 +32,7 @@
# repo: "deb [signed-by={{ falco_repo_key }}] https://download.falco.org/packages/{{ pkg_name }} stable main"
repo: "deb https://download.falco.org/packages/{{ pkg_name }} stable main"
filename: falcosecurity
mode: 0444
mode: '0444'
state: present

- name: Debian | Install kernel headers
Expand Down
2 changes: 1 addition & 1 deletion tasks/redhat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
ansible.builtin.get_url:
url: "https://falco.org/repo/{{ repo_name }}"
dest: /etc/yum.repos.d/falcosecurity.repo
mode: 0644
mode: '0644'
validate_certs: "{{ falco_rpm_validate_certs | default('yes') }}"

- name: Redhat | Install kernel-devel
Expand Down

0 comments on commit 391e452

Please sign in to comment.