init commit

This commit is contained in:
2025-09-28 18:02:09 -07:00
commit 01b88d4c07
10 changed files with 418 additions and 0 deletions

30
tasks/chrome.yaml Normal file
View File

@ -0,0 +1,30 @@
---
###############################################
# Install Chromium
- name: chrome - Install Chromium
when: not refresh_special | bool
apt:
name: chromium
state: present
- name: Chrome - fine chromium binary
shell: "find /usr/bin/chromium*"
register: find_chromium
- name: Chrome - change var if chromium
# when: armcpu_check | bool
set_fact:
browser_binary: "{{ find_chromium.stdout_lines[0] }}"
###############################################
# Configure Kiosks
- name: Set up Chrome Kiosk Services
include_tasks: kiosk.yaml
loop: "{{ kiosk_service_templates }}"
loop_control:
loop_var: kiosk_service_items
...