initial upload
This commit is contained in:
6
playbooks/apache.yml
Normal file
6
playbooks/apache.yml
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
# Configure Apache.
|
||||
|
||||
- hosts: apache_php
|
||||
roles:
|
||||
- apache_php
|
||||
22
playbooks/basic-tools.yml
Normal file
22
playbooks/basic-tools.yml
Normal file
@@ -0,0 +1,22 @@
|
||||
---
|
||||
|
||||
- hosts: all
|
||||
become: true
|
||||
tasks:
|
||||
|
||||
- name: update repo index
|
||||
apt:
|
||||
update_cache: yes
|
||||
|
||||
- name: install usefull and basic system tools
|
||||
apt:
|
||||
name:
|
||||
- vim-nox
|
||||
- mc
|
||||
- nmap
|
||||
- net-tools
|
||||
- dnsutils
|
||||
- tmux
|
||||
- tcpdump
|
||||
- iptraf-ng
|
||||
- screen
|
||||
6
playbooks/consul.yml
Normal file
6
playbooks/consul.yml
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
- hosts: consul
|
||||
serial: 2
|
||||
gather_facts: true
|
||||
roles:
|
||||
- consul
|
||||
4
playbooks/firewall.yml
Normal file
4
playbooks/firewall.yml
Normal file
@@ -0,0 +1,4 @@
|
||||
---
|
||||
- hosts: all
|
||||
roles:
|
||||
- firewall
|
||||
4
playbooks/network.yml
Normal file
4
playbooks/network.yml
Normal file
@@ -0,0 +1,4 @@
|
||||
---
|
||||
- hosts: all
|
||||
roles:
|
||||
- role: network
|
||||
7
playbooks/ntp.yml
Normal file
7
playbooks/ntp.yml
Normal file
@@ -0,0 +1,7 @@
|
||||
---
|
||||
# Configure the base settings for all hosts.
|
||||
|
||||
- hosts: all
|
||||
roles:
|
||||
|
||||
- role: ntp
|
||||
4
playbooks/postfix.yml
Normal file
4
playbooks/postfix.yml
Normal file
@@ -0,0 +1,4 @@
|
||||
---
|
||||
- hosts: all
|
||||
roles:
|
||||
- postfix
|
||||
Reference in New Issue
Block a user