release candidate

This commit is contained in:
2025-10-12 16:50:32 -07:00
parent 3432e8ac9f
commit 699d7f54c8
20 changed files with 415 additions and 150 deletions

22
tasks/arm_gui_check.yaml Normal file
View File

@ -0,0 +1,22 @@
---
# need to put this little guy in a file to do a loop
- name: Video Capture - run product command
shell: "lspci | grep '{{ arm_gui_list_item }}' | head -n 1 | awk {'print $8'}"
register: prod_name_output
- name: Video Capture - check for output
ignore_errors: yes
debug:
msg: "System Info: {{prod_name_output.stdout_lines[0] }}"
- name: Video Capture - Check for GUI-approved platform
ignore_errors: yes
set_fact:
GUI_deploy: "{{ prod_name_output.stdout_lines[0] in kiosk_models }}"
arm_device_found: true
...