Files
ansible-playbooks/cosmos-kiosk.yaml
2025-11-28 17:26:03 -08:00

22 lines
367 B
YAML

---
- name: Cosmos Kiosk Pipeline
hosts: all
become: yes
roles:
- role: cosmos_init
when: not refresh_special | bool
- role: cosmos_init
when: refresh_only | bool
vars:
security_check_only: true
- role: docker_workstation
when: install_docker | bool and not refresh_special | bool
- role: chrome_kiosk
...