--- # create and configure user account - name: Drive health - initialize early steps include_tasks: initialize.yaml # create drive index service - name: Drive health - drive_index service include_tasks: drive_index.yaml # create drive history web dashboard - name: Drive health - drive history dashboard include_tasks: dashboard.yaml # set up autologin - name: Drive health - configure autologin when: not install_kiosk | bool and not service_only | bool include_tasks: autologin.yaml # configure service-mode - name: Drive health - configure service-mode, disable 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: "" ...