Files
ssd_health/tasks/main.yaml
2025-11-02 20:31:51 -08:00

21 lines
501 B
YAML

---
# create and configure user account
- name: Drive health - set up user account
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 or not service_only | bool
include_tasks: autologin.yaml
...