20 lines
245 B
YAML
20 lines
245 B
YAML
---
|
|
- name: CD to ISO
|
|
hosts: all
|
|
become: yes
|
|
|
|
# Required Jenkins Vars
|
|
# host_ip - string
|
|
# new_hostname - string
|
|
# rename_host - bool
|
|
# config_matt - bool
|
|
# kde_full - bool
|
|
#
|
|
|
|
roles:
|
|
- { role: cd_to_iso, tags: ['cd_to_iso'], }
|
|
|
|
|
|
...
|
|
|