21 lines
474 B
YAML
21 lines
474 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
|
|
include_tasks: autologin.yaml
|
|
|
|
|
|
... |