syntax, syntax
This commit is contained in:
parent
f2eb817346
commit
77dfd76ce2
1 changed files with 18 additions and 16 deletions
|
@ -1,19 +1,21 @@
|
||||||
---
|
---
|
||||||
|
|
||||||
- name: Setup fail2ban
|
- hosts: 127.0.0.1
|
||||||
hosts: 127.0.0.1
|
connection: local
|
||||||
connection: local
|
|
||||||
|
|
||||||
- name: This command will echo text to a file as a test
|
tasks:
|
||||||
ansible.builtin.shell:
|
|
||||||
cmd: echo 'hello' > /tmp/hello.txt
|
|
||||||
|
|
||||||
- name: install fail2ban
|
- name: This command will echo text to a file as a test
|
||||||
ansible.builtin.dnf:
|
ansible.builtin.shell:
|
||||||
name: fail2ban
|
cmd: echo 'hello' > /tmp/hello.txt
|
||||||
state: present
|
|
||||||
- name: start fail2ban
|
- name: install fail2ban
|
||||||
ansible.builtin.systemd_service:
|
ansible.builtin.dnf:
|
||||||
state: started
|
name: fail2ban
|
||||||
enabled: true
|
state: present
|
||||||
name: fail2ban
|
|
||||||
|
- name: start fail2ban
|
||||||
|
ansible.builtin.systemd_service:
|
||||||
|
state: started
|
||||||
|
enabled: true
|
||||||
|
name: fail2ban
|
Loading…
Add table
Reference in a new issue