netz39-infra-ansible/main.yml

45 lines
992 B
YAML
Raw Normal View History

2020-11-24 18:31:09 +01:00
---
- hosts: all
2020-11-24 18:31:09 +01:00
become: true
vars:
2020-11-24 22:46:30 +01:00
ansible_python_interpreter: /usr/bin/python3
2020-11-24 18:47:03 +01:00
roles:
2020-12-28 22:53:53 +01:00
- 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
2020-12-12 23:09:41 +01:00
state: present
2020-11-24 18:47:16 +01:00
- name: Setup unattended-upgrades
include_role:
name: ansible-role-unattended-upgrades
vars:
unattended_origins_patterns:
2020-12-28 22:53:53 +01:00
- "origin=Debian,archive=buster-security"
- "o=Debian,a=buster-updates"
2020-11-24 18:47:16 +01:00
unattended_package_blacklist: [cowsay]
2020-12-28 22:53:53 +01:00
unattended_mail: "root"
2020-11-24 18:47:16 +01:00
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-12-10 22:11:57 +01:00
- name: Tau specific setup
import_playbook: tau.yml
2020-12-10 22:15:36 +01:00
- name: Pottwal specific setup
import_playbook: pottwal.yml
- name: Specific setup for host unicorn
import_playbook: unicorn.yml