24 lines
335 B
YAML
24 lines
335 B
YAML
---
|
|
- name: Cosmos PXE Server Pipeline
|
|
hosts: all
|
|
become: yes
|
|
|
|
vars:
|
|
terse_packages: true
|
|
|
|
# Required Jenkins Vars
|
|
# host_ip - string
|
|
# new_hostname - string
|
|
# rename_host - bool
|
|
# config_matt - bool
|
|
# kde_full - bool
|
|
#
|
|
|
|
roles:
|
|
- role: cosmos_init
|
|
when: not refresh_only | bool
|
|
|
|
- role: pxe_server
|
|
|
|
...
|