Files
vcr_capture/tasks/arm_gui_check.yaml
2025-10-12 16:50:32 -07:00

22 lines
548 B
YAML

---
# 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
...