playbook working, tidying up task order

This commit is contained in:
2025-11-02 23:33:13 -08:00
parent 378b740d93
commit c6d51f2a49
14 changed files with 220 additions and 375 deletions

View File

@ -1,14 +1,14 @@
---
# create and configure user account
- name: Drive health - set up user account
include_tasks: user_setup.yaml
- name: Drive health - initialize early steps
include_tasks: initialiaze.yaml
# create drive index service
- name: Drive health - drive_index service
include_tasks: drive_index.yaml
# create drive history dashboard
# create drive history web dashboard
- name: Drive health - drive history dashboard
include_tasks: dashboard.yaml
@ -17,5 +17,25 @@
when: not install_kiosk | bool or not service_only | bool
include_tasks: autologin.yaml
# configure service-mode
- name: Drive health - configure autologin
when: install_kiosk | bool or service_only | bool
include_tasks: service_mode.yaml
# Install chrome kiosk
- name: install chromium kiosk
when: install_kiosk | bool and not service_only | bool
include_role:
name: "chrome_kiosk"
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: ""
...