all working i think

This commit is contained in:
2025-07-28 06:21:45 -07:00
parent b740ba9991
commit 211930cde3
30 changed files with 900 additions and 117 deletions

View File

@ -4,24 +4,41 @@
# Playbook for configuring GOLE as Road Trip Carputer
###########################################################
# Steps:
### Packages
### uStreamer
### GPS Service
### Timelapse Service
### Sharing Page
### Photo Refresh Page
### Cosmos Autologin
### Top Cam Feed Kiosk
### Bottom Service Control Panel
#- name: Install ustreamer
# include_tasks: ustreamer.yaml
#
#- name: Install gps_service
# include_tasks: gps_service.yaml
#
#- name: install timelapse service
# include_tasks: timelapse.yaml
#
#- name: Install photo refresh site
# include_tasks: photo_refresh.yaml
- name: Install Packages
apt:
name: "{{ item }}"
state: present
loop: "{{ main_packages }}"
- name: Install ustreamer
include_tasks: ustreamer.yaml
- name: Install gps_service
include_tasks: gps_service.yaml
- name: install timelapse service
include_tasks: timelapse.yaml
- name: Install photo refresh site
include_tasks: photo_refresh.yaml
- name: Install cosmos autologin user
include_tasks: cosmos_autologin.yaml
- name: Install timelapse service control
include_tasks: service_control.yaml
- name: Set up Chrome Kiosk Services
include_tasks: chrome.yaml
...