Files
ansible-playbooks/cosmos-kiosk.yaml
2025-09-28 11:26:45 -07:00

17 lines
263 B
YAML

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