Files
ssd_health/tasks/main.yaml
2025-11-02 15:20:34 -08:00

22 lines
507 B
YAML

---
# create and configure user account
- name: Drive health - set up user account
when: not quick_refresh | bool
include_tasks: user_setup.yaml
# create drive index service
- name: Drive health - drive_index service
include_tasks: drive_index.yaml
# create drive history dashboard
- name: Drive health - drive history dashboard
include_tasks: dashboard.yaml
# set up autologin
- name: Drive health - configure autologin
when: not install_kiosk | bool
include_tasks: autologin.yaml
...