ansible/playbooks/groups/flatpak-cache.yml
Leo Puvilland 30295ca05c
flatpak-cache: change 644 to 0644 to abide by ansible syntax and enable MOTD
Signed-off-by: Leo Puvilland <leo@craftcat.dev>
2024-05-04 11:03:50 -07:00

31 lines
631 B
YAML

---
- import_playbook: "/srv/web/infra/ansible/playbooks/include/virt-create.yml"
vars:
myhosts: "flatpak_cache"
- name: make the box be real
hosts: flatpak_cache
user: root
gather_facts: True
vars_files:
- /srv/web/infra/ansible/vars/global.yml
- "/srv/private/ansible/vars.yml"
- /srv/web/infra/ansible/vars/{{ ansible_distribution }}.yml
roles:
- base
- rkhunter
- nagios_client
- zabbix/zabbix_agent
- ipa/client
- collectd/base
- sudo
- flatpak-cache
tasks:
- import_tasks: "{{ tasks_path }}/motd.yml"
handlers:
- import_tasks: "{{ handlers_path }}/restart_services.yml"