Define coherent safe default for package state

Instead of overriding this value everywhere, it's easier to
define it from the start to the value we want. In this case,
we want to define it to "present", while still being
overridable.

Change-Id: If9db9aec4b48d2118aae0f2ef611f0e044d63fb3
This commit is contained in:
Jean-Philippe Evrard 2022-08-09 14:28:39 +02:00
parent f8594d335f
commit 0b35e65fd2
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@
# Set the package install state for distribution packages
# Options are 'present' and 'latest'
lxc_hosts_package_state: "latest"
lxc_hosts_package_state: "{{ package_state | default('present') }}"
# Define a list of extra distribuition packages to install onto the host
# at the discretion of the deployer