2020-11-24 18:31:09 +01:00
|
|
|
---
|
|
|
|
- hosts: tau
|
|
|
|
become: true
|
|
|
|
|
|
|
|
vars:
|
2020-11-24 22:46:30 +01:00
|
|
|
ansible_python_interpreter: /usr/bin/python3
|
|
|
|
|
2020-11-24 19:31:27 +01:00
|
|
|
server_admin: "admin@netz39.de"
|
|
|
|
admin_users: [tux, alex]
|
|
|
|
|
|
|
|
ag_timezone: Europe/Berlin
|
|
|
|
|
|
|
|
docker_compose_version: "1.25.4"
|
|
|
|
docker_compose_path: /usr/local/bin/docker-compose
|
2020-11-24 18:31:09 +01:00
|
|
|
|
2020-11-24 22:46:18 +01:00
|
|
|
mysql_root_pw: !vault |
|
|
|
|
$ANSIBLE_VAULT;1.1;AES256
|
|
|
|
64313138383833643866383332623265383863623332343864306537633931326139303638303761
|
|
|
|
6464653933613663643632383935376164393033363233330a313063613832396166666464666136
|
|
|
|
36633532393231663634663034666666356332373438646130643161383134653739663066626538
|
|
|
|
3661663132343639310a613431653031626434323064313465373866666332353931313836623465
|
|
|
|
3461
|
|
|
|
|
2020-11-24 18:47:03 +01:00
|
|
|
roles:
|
|
|
|
- role: ansible.timezone
|
2020-11-24 18:31:09 +01:00
|
|
|
|
|
|
|
tasks:
|
|
|
|
- name: Update and clean package cache
|
|
|
|
apt:
|
|
|
|
update_cache: true
|
|
|
|
cache_valid_time: 3600
|
|
|
|
autoclean: true
|
|
|
|
|
2020-11-24 18:47:16 +01:00
|
|
|
- name: Ensure unattended-upgrades is installed and up to date
|
|
|
|
apt:
|
|
|
|
name: unattended-upgrades
|
|
|
|
state: latest
|
|
|
|
|
|
|
|
- name: Setup unattended-upgrades
|
|
|
|
include_role:
|
|
|
|
name: ansible-role-unattended-upgrades
|
|
|
|
vars:
|
|
|
|
unattended_origins_patterns:
|
|
|
|
- 'origin=Debian,archive=buster-security'
|
|
|
|
- 'o=Debian,a=buster-updates'
|
|
|
|
unattended_package_blacklist: [cowsay]
|
|
|
|
unattended_mail: 'root'
|
|
|
|
|
2020-11-24 19:21:52 +01:00
|
|
|
- name: Setup users
|
|
|
|
include_tasks: tasks/users.yml
|
|
|
|
|
2020-11-24 22:46:18 +01:00
|
|
|
- name: Install Docker
|
2020-11-24 19:44:01 +01:00
|
|
|
include_tasks: tasks/docker_install.yml
|
2020-11-24 19:31:27 +01:00
|
|
|
|
2020-11-24 22:46:18 +01:00
|
|
|
- name: Setup Docker Containers
|
|
|
|
include_tasks: tasks/docker_setup.yml
|
|
|
|
|
2020-11-24 18:31:09 +01:00
|
|
|
- name: Setup httpd
|
|
|
|
include_tasks: tasks/httpd.yml
|