From f5c5e11581e17919602fcc08a022ca190be2e18e Mon Sep 17 00:00:00 2001 From: Markos Chandras Date: Thu, 1 Nov 2018 09:55:48 +0000 Subject: xci: Add missing update_cache statements When we install packages from the distro repos we need to make sure that the database is updated. This also takes SUSE's zypper pkg manager into consideration which can benefit from the same Ansible option. Change-Id: I7a2206bfc5827b9ccb448278759711c560bb4679 Signed-off-by: Markos Chandras --- xci/installer/kubespray/playbooks/configure-opnfvhost.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'xci/installer/kubespray/playbooks/configure-opnfvhost.yml') diff --git a/xci/installer/kubespray/playbooks/configure-opnfvhost.yml b/xci/installer/kubespray/playbooks/configure-opnfvhost.yml index 82ece961..54e32149 100644 --- a/xci/installer/kubespray/playbooks/configure-opnfvhost.yml +++ b/xci/installer/kubespray/playbooks/configure-opnfvhost.yml @@ -82,7 +82,7 @@ package: name: "{{ (ansible_pkg_mgr == 'zypper') | ternary('dbus-1', 'dbus') }}" state: present - update_cache: "{{ (ansible_pkg_mgr == 'apt') | ternary('yes', omit) }}" + update_cache: "{{ (ansible_pkg_mgr in ['apt', 'zypper']) | ternary('yes', omit) }}" when: xci_flavor == 'aio' - name: change dashboard server type to NodePort -- cgit 1.2.3-korg