--- - hosts: tau become: true vars: 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 roles: - role: ansible.timezone tasks: - name: Update and clean package cache apt: update_cache: true cache_valid_time: 3600 autoclean: true - 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' - name: Setup users include_tasks: tasks/users.yml - name: Setup Docker include_tasks: tasks/docker.yml - name: Setup httpd include_tasks: tasks/httpd.yml