31 lines
560 B
YAML
31 lines
560 B
YAML
---
|
|
- name: Cosmos VCR Capture
|
|
hosts: all
|
|
become: yes
|
|
|
|
vars_files:
|
|
- /var/jenkins_home/ansible/roles/video_capture/defaults/kiosk.yaml
|
|
|
|
tasks:
|
|
|
|
- name: refresh special when kiosk update
|
|
when: kiosk_refresh | bool
|
|
set_fact:
|
|
refresh_special: true
|
|
|
|
roles:
|
|
- role: cosmos_init
|
|
when: not refresh_special | bool
|
|
|
|
- role: docker_workstation
|
|
when: not refresh_special | bool
|
|
|
|
- role: nvidia_drivers
|
|
when: install_nvidia | bool and not refresh_special | bool
|
|
|
|
- role: video_capture
|
|
|
|
|
|
...
|
|
|