You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
681 B
22 lines
681 B
- name: Generate the Installer ISO image
|
|
hosts: all
|
|
vars_files: ../credentials.yaml
|
|
tasks:
|
|
- name: Create the initial ostree repo
|
|
ansible.builtin.import_playbook: initial_ostree.yaml
|
|
|
|
|
|
- name: Build the RPMS
|
|
ansible.builtin.import_playbook: build_RPMS.yaml
|
|
|
|
- name: Repository Creation
|
|
ansible.builtin.import_playbook: repo_creation.yaml
|
|
|
|
- name: Ostree construction
|
|
ansible.builtin.import_playbook: ostree_construction.yaml
|
|
|
|
- name: Generate the Installer ISO image
|
|
ansible.builtin.import_playbook: gen_iso_image.yaml
|
|
|
|
- name: Prepare & inject the Kickstart script
|
|
ansible.builtin.import_playbook: kickstart.yaml
|
|
|