Compare commits

..

No commits in common. "1b1042fe0306097bf8212711bb3401fa6aad21d7" and "8377f222c69df6f9057d207f6325eab9aff6e91c" have entirely different histories.

15 changed files with 16 additions and 51 deletions

View file

@ -1,5 +1,5 @@
---
- name: Configure all servers
- name: Install and start Apache web server
hosts: all
roles:
- server_install_ssh

View file

@ -1,7 +1,6 @@
---
- name: Configure calibre
- name: Install and start Apache web server
hosts: calibre
roles:
- server_install_ssh
- server_install_fail2ban
- server_install_syslog
- server_install_fail2ban

View file

@ -1,21 +1,12 @@
---
- name: Configure docker1
- name: Install and start Apache web server
hosts: docker1
roles:
- role: server_install_ssh
tags:
- ssh
- system
tags: ssh
- role: server_install_fail2ban
tags:
- fail2ban
- system
- role: server_install_syslog
tags:
- syslog
- system
tags: fail2ban
- role: deploy_container_traefik
tags:

View file

@ -1,7 +1,6 @@
---
- name: Configure Gaming Server
- name: Install and start Apache web server
hosts: minecraft
roles:
- server_install_ssh
- server_install_fail2ban
- server_install_syslog
- server_install_fail2ban

View file

@ -1,7 +1,6 @@
---
- name: Configure pihole
- name: Install and start Apache web server
hosts: pihole
roles:
- server_install_ssh
- server_install_fail2ban
- server_install_syslog
- server_install_fail2ban

View file

@ -1,6 +1,6 @@
---
- name: Configure pve1
- name: Install and start Apache web server
hosts: pve1
roles:
- server_install_ssh
- server_install_fail2ban
- server_install_fail2ban

View file

@ -1,6 +1,6 @@
---
- name: Configure pve2
- name: Install and start Apache web server
hosts: pve2
roles:
- server_install_ssh
- server_install_fail2ban
- server_install_fail2ban

View file

@ -1,6 +1,6 @@
---
- name: Configure pve3
- name: Install and start Apache web server
hosts: pve3
roles:
- server_install_ssh
- server_install_fail2ban
- server_install_fail2ban

View file

@ -1,6 +0,0 @@
---
- name: Start and enable rsyslog
ansible.builtin.service:
name: rsyslog
state: started
enabled: true

View file

@ -1,17 +0,0 @@
---
- name: Update apt package index
ansible.builtin.apt:
update_cache: true
cache_valid_time: 3600
- name: Install rsyslog
ansible.builtin.apt:
name: rsyslog
state: present
notify: Start and enable rsyslog
- name: Enable rsyslog
ansible.builtin.service:
name: rsyslog
state: started
enabled: true