netz39-infra-ansible/main.yml

52 lines
1.2 KiB
YAML
Raw Normal View History

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
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 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
2020-12-09 18:50:21 +01:00
include_role:
name: users
2020-11-24 19:21:52 +01:00
2020-11-24 22:46:18 +01:00
- name: Install Docker
2020-11-25 16:56:28 +01:00
include_role:
name: install-docker
2020-11-24 19:31:27 +01:00
2020-11-25 16:56:28 +01:00
- name: Setup Docker Environment
include_tasks: tasks/docker_env.yml
2020-11-24 22:46:18 +01:00
2020-11-24 18:31:09 +01:00
- name: Setup httpd
include_tasks: tasks/httpd.yml
- name: Setup phpmyadmin
include_tasks: tasks/phpmyadmin.yml