37 lines
898 B
YAML
37 lines
898 B
YAML
---
|
|
- name: SSD Health Checker
|
|
hosts: all
|
|
become: yes
|
|
|
|
roles:
|
|
|
|
- role: cosmos_init
|
|
when: not quick_refresh | bool
|
|
vars:
|
|
intall_cockpit: true
|
|
install_python: true
|
|
init_light: true
|
|
no_vpn: true
|
|
new_hostname: "ssd-health"
|
|
public_deploy: true
|
|
|
|
- role: docker_workstation
|
|
when: not quick_refresh | bool
|
|
vars:
|
|
docker_full: false
|
|
|
|
- role: ssd_check
|
|
|
|
#- role: chrome_kiosk
|
|
# when: install_kiosk | bool and not service_only | bool
|
|
# vars:
|
|
# refresh_special: "{{ quick_refresh }}"
|
|
# kiosk_service_templates:
|
|
# - chrome_website: "http://0.0.0.0:8088"
|
|
# service_name: ssh_dashboard
|
|
# service_description: "SSH Health History Dashboard"
|
|
# user_data_dir: ""
|
|
# extra_service_configs: ""
|
|
# extra_chrome_configs: ""
|
|
|
|
... |