Skip to content

Commit

Permalink
single quotes added to follow role formatting
Browse files Browse the repository at this point in the history
Signed-off-by: danielkubat <dan.kubat@gmail.com>
  • Loading branch information
danielkubat committed Aug 18, 2020
1 parent 8f91216 commit 8958d2c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tasks/sysctl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
template:
src: 'etc/default/ufw.j2'
dest: '/etc/default/ufw'
mode: 0644
mode: '0644'
when:
- ufw_manage_defaults
- ansible_facts.distribution in ['Debian', 'Ubuntu']
Expand Down
4 changes: 2 additions & 2 deletions tasks/yum.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
path: '{{ item.path }}'
regexp: '^\s*gpgcheck.*'
replace: 'gpgcheck=1'
mode: 0644
mode: '0644'
with_items:
- '{{ yum_repos.files | default([]) }}'

Expand All @@ -35,7 +35,7 @@
path: '{{ item }}'
regexp: '^\s*gpgcheck\W.*'
replace: 'gpgcheck=1'
mode: 0644
mode: '0644'
register: status
failed_when: status.rc is defined and status.rc != 257
loop:
Expand Down

0 comments on commit 8958d2c

Please sign in to comment.