40 lines
762 B
YAML
40 lines
762 B
YAML
---
|
|
- name: GOEM to LLDP Scan Pipeline
|
|
hosts: all
|
|
become: yes
|
|
|
|
vars:
|
|
kiosk_service_templates:
|
|
- chrome_website: "http://127.0.0.1"
|
|
service_name: "stream_preview"
|
|
service_description: "VCR Capture Preview Stream"
|
|
extra_service_configs: |
|
|
After=lldp_api.service
|
|
After=sddm.service
|
|
|
|
extra_chrome_configs: "{{ fixed_size }}"
|
|
|
|
# Required Jenkins Vars
|
|
# host_ip - string
|
|
# new_hostname - string
|
|
|
|
vars:
|
|
terse_packages: false
|
|
|
|
roles:
|
|
- role: cosmos_init
|
|
when: not refresh_only | bool
|
|
|
|
- role: cosmos_init
|
|
when: refresh_only | bool
|
|
vars:
|
|
security_check_only: true
|
|
|
|
- role: lldp_scan
|
|
|
|
- role: chrome_kiosk
|
|
|
|
|
|
|
|
|
|
... |