release candidate
This commit is contained in:
22
tasks/arm_gui_check.yaml
Normal file
22
tasks/arm_gui_check.yaml
Normal 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
|
||||
|
||||
|
||||
|
||||
...
|
||||
Reference in New Issue
Block a user