diff options
| author | spmfox <spmfox@foxwd.com> | 2023-06-13 14:55:11 -0400 |
|---|---|---|
| committer | spmfox <spmfox@foxwd.com> | 2023-06-13 14:55:11 -0400 |
| commit | 6377f9b1f95f83dde750d18a29e0b5587720fb62 (patch) | |
| tree | 50ff7af3accc06b44c7b6a56fb79d97fea2f0875 /roles/guest-configure/vars | |
| parent | 45b5f70c97ae4c0180c13564c82a38d2bd96a1e9 (diff) | |
adding default variables, removing need for kickstart, paving the way for non-kickstart installations
Diffstat (limited to 'roles/guest-configure/vars')
| -rw-r--r-- | roles/guest-configure/vars/main.yml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/roles/guest-configure/vars/main.yml b/roles/guest-configure/vars/main.yml index 10881fb..70d90a4 100644 --- a/roles/guest-configure/vars/main.yml +++ b/roles/guest-configure/vars/main.yml @@ -1,6 +1,7 @@ ansible_ssh_common_args: "-o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null" ansible_user: root -guest_configure_user: "{{ user }}" -guest_configure_packages: "{{ packages }}" -guest_configure_services: "{{ services }}" +guest_configure_user: "{{ user if user is defined }}" +guest_configure_ssh_key: "{{ ssh_key if ssh_key is defined }}" +guest_configure_packages: "{{ packages if packages is defined }}" +guest_configure_services: "{{ services if services is defined }}" |
