21 lines
No EOL
424 B
YAML
21 lines
No EOL
424 B
YAML
---
|
|
|
|
- hosts: 127.0.0.1
|
|
connection: local
|
|
|
|
tasks:
|
|
|
|
- name: This command will echo text to a file as a test
|
|
ansible.builtin.shell:
|
|
cmd: echo 'hello' > /tmp/hello.txt
|
|
|
|
- name: install fail2ban
|
|
ansible.builtin.dnf:
|
|
name: fail2ban
|
|
state: present
|
|
|
|
- name: start fail2ban
|
|
ansible.builtin.systemd_service:
|
|
state: started
|
|
enabled: true
|
|
name: fail2ban |