diff --git a/group_vars/all.yml b/group_vars/all.yml index f2f92bc..9a993ad 100644 --- a/group_vars/all.yml +++ b/group_vars/all.yml @@ -31,7 +31,7 @@ tls_private: /etc/pki/tls/private tls_bundle: /etc/pki/tls/cert.pem # url where installer data is located -boot_url: https://boot.foo.sh/ks +boot_url: https://boot.foo.sh # hardcode this for now ansible_datacenter: home diff --git a/group_vars/centos7.yml b/group_vars/centos7.yml index 2213864..b9252d8 100644 --- a/group_vars/centos7.yml +++ b/group_vars/centos7.yml @@ -5,7 +5,7 @@ mem_size: 1536 num_cpus: 1 # extra args for virt-install -ks_file: "{{ boot_url }}/centos7.ks" +ks_file: "{{ boot_url }}/ks/centos7.ks" ipcmd: >- {% if network_interfaces[0]['proto'] is defined %} {% if network_interfaces[0]['proto'] == 'static' %} diff --git a/group_vars/centos8.yml b/group_vars/centos8.yml index 741cffa..9e0d9ed 100644 --- a/group_vars/centos8.yml +++ b/group_vars/centos8.yml @@ -5,7 +5,7 @@ mem_size: 2048 num_cpus: 1 # extra args for virt-install -ks_file: "{{ boot_url }}/centos8.ks" +ks_file: "{{ boot_url }}/ks/centos8.ks" ipcmd: >- {% if network_interfaces[0]['proto'] is defined %} {% if network_interfaces[0]['proto'] == 'static' %} diff --git a/group_vars/openbsd.yml b/group_vars/openbsd.yml index be9ea36..d568846 100644 --- a/group_vars/openbsd.yml +++ b/group_vars/openbsd.yml @@ -16,5 +16,5 @@ mem_size: 256 num_cpus: 1 # extra args for virt-install -virt_install_os_args: --cdrom https://boot.foo.sh/openbsd/openbsd.iso +virt_install_os_args: --cdrom {{ boot_url }}/openbsd/openbsd.iso virt_install_python_cmd: pkg_add python3 -I -x