fix jinja syntax

This commit is contained in:
Sandwich 2024-10-30 17:05:50 +01:00
parent 04d05a4e8b
commit ebedff1c4e

View File

@ -21,8 +21,8 @@
confirm: true
vars_files: vars.yml
vars:
hypervisor: "{{ hypervisor }} | default('vmware')"
install_drive: "{{ install_drive }} | default('/dev/sda')"
hypervisor: "{{ hypervisor | default('vmware') }}"
install_drive: "{{ install_drive | default('/dev/sda') }}"
ansible_user: "{{ user_name }}"
ansible_password: "{{ user_password }}"
ansible_become_password: "{{ user_password }}"