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.
11 lines
370 B
11 lines
370 B
- name: creat kickstart
|
|
hosts: all
|
|
become: true
|
|
vars_files: ../config.yaml
|
|
tasks:
|
|
- name: set MICROSHIFT_PULL_SECRET
|
|
ansible.builtin.lineinfile:
|
|
path: "{{ ansible_env.HOME }}/red-hat-kiosk/imagebuilder/kiosk.ks"
|
|
regexp: '--url=http://__MYIP__/repo'
|
|
line: '--url=http://"{{ ansible_default_ipv4.address }}"'
|
|
backrefs: yes
|