Close ternary filter properly

In I8b032f3b5d043e543c1d0fd0434d833385ceecc4 the ternary filter
for the distro package install was not closed properly.

Change-Id: Iae88db62aa3d1a1f955347f817b43a82e23789ac
This commit is contained in:
Jesse Pretorius 2019-03-22 16:45:15 +00:00
parent 403e2b3cc5
commit ef7a991193
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@
- name: Install distro packages for venv build
package:
name: "{{ (venv_wheel_build_enable | bool) | ternary(venv_install_distro_package_list, (venv_build_base_distro_package_list | union(venv_build_distro_package_list) | union(venv_install_distro_package_list)) }}"
name: "{{ (venv_wheel_build_enable | bool) | ternary(venv_install_distro_package_list, (venv_build_base_distro_package_list | union(venv_build_distro_package_list) | union(venv_install_distro_package_list))) }}"
state: "{{ venv_distro_package_state }}"
update_cache: "{{ (ansible_pkg_mgr in ['apt', 'zypper']) | ternary('yes', omit) }}"
cache_valid_time: "{{ (ansible_pkg_mgr == 'apt') | ternary(venv_distro_cache_valid_time, omit) }}"