Skip to content

Commit

Permalink
fix ansible-lint octal value issues
Browse files Browse the repository at this point in the history
  • Loading branch information
richm committed Jun 4, 2024
1 parent 664b170 commit f36baab
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
create: true
owner: root
group: root
mode: 0600
mode: "0600"
loop:
- key: services
value: "nss, pam"
Expand All @@ -50,7 +50,7 @@
create: true
owner: root
group: root
mode: 0600
mode: "0600"
loop:
- key: id_provider
value: proxy
Expand All @@ -69,7 +69,7 @@
dest: "{{ __tlog_sssd_session_recording_conf }}"
owner: root
group: root
mode: 0600
mode: "0600"
when: tlog_use_sssd
notify: Handler tlog_handler restart sssd

Expand Down Expand Up @@ -108,4 +108,4 @@
dest: "{{ __tlog_rec_session_conf }}"
owner: root
group: root
mode: 0644
mode: "0644"

0 comments on commit f36baab

Please sign in to comment.