Skip to content

Commit

Permalink
Cs fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tersmitten committed Nov 28, 2024
1 parent 0858376 commit dab56b2
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ jobs:
matrix:
include:
- distro: debian10
ansible-version: '>=9, <10'
- distro: debian11
- distro: debian12
- distro: ubuntu1804
Expand Down
10 changes: 5 additions & 5 deletions tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
dest: /etc/fail2ban/fail2ban.local
owner: root
group: root
mode: 0644
mode: '0644'
notify: restart fail2ban
tags:
- configuration
Expand All @@ -63,7 +63,7 @@
dest: /etc/fail2ban/jail.local
owner: root
group: root
mode: 0644
mode: '0644'
notify: restart fail2ban
tags:
- configuration
Expand All @@ -77,7 +77,7 @@
dest: /etc/fail2ban/filter.d/
owner: root
group: root
mode: 0644
mode: '0644'
when: fail2ban_filterd_path is defined
notify: restart fail2ban
tags:
Expand All @@ -91,7 +91,7 @@
dest: /etc/fail2ban/action.d/
owner: root
group: root
mode: 0644
mode: '0644'
when: fail2ban_actiond_path is defined
notify: restart fail2ban
tags:
Expand All @@ -105,7 +105,7 @@
dest: /etc/fail2ban/jail.d/
owner: root
group: root
mode: 0644
mode: '0644'
when: fail2ban_jaild_path is defined
notify: restart fail2ban
tags:
Expand Down
3 changes: 2 additions & 1 deletion tests/test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# test file
---
- hosts: localhost
- name: converge
hosts: localhost
connection: local
become: true
roles:
Expand Down
3 changes: 2 additions & 1 deletion tests/vagrant.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# test file
---
- hosts: all
- name: converge
hosts: all
remote_user: vagrant
become: true
roles:
Expand Down

0 comments on commit dab56b2

Please sign in to comment.