summaryrefslogtreecommitdiffstats
path: root/xci/installer/kubespray/playbooks/configure-opnfvhost.yml
diff options
context:
space:
mode:
authorMarkos Chandras <mchandras@suse.de>2018-05-11 09:37:33 +0000
committerGerrit Code Review <gerrit@opnfv.org>2018-05-11 09:37:33 +0000
commitd36aa803ab5b4a141b5487cd782949fecdd5382b (patch)
treecdf1edea6d7f8d79c60004f89d4be034b406b083 /xci/installer/kubespray/playbooks/configure-opnfvhost.yml
parente53cbf7585e9098e1e6eaad5101b5f60f704a50f (diff)
parent13c452caa0fd28ade49263984c3cb68923086d32 (diff)
Merge "fix k8 aio flavor undefined variable"
Diffstat (limited to 'xci/installer/kubespray/playbooks/configure-opnfvhost.yml')
-rw-r--r--xci/installer/kubespray/playbooks/configure-opnfvhost.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/xci/installer/kubespray/playbooks/configure-opnfvhost.yml b/xci/installer/kubespray/playbooks/configure-opnfvhost.yml
index 7626b949..01904ba3 100644
--- a/xci/installer/kubespray/playbooks/configure-opnfvhost.yml
+++ b/xci/installer/kubespray/playbooks/configure-opnfvhost.yml
@@ -56,7 +56,7 @@
- name: Install required packages
package:
- name: "{{ kube_require_packages[ansible_pkg_mgr] }}"
+ name: "{{ (ansible_pkg_mgr == 'zypper') | ternary('dbus-1', 'dbus') }}"
state: present
update_cache: "{{ (ansible_pkg_mgr == 'apt') | ternary('yes', omit) }}"
when: xci_flavor == 'aio'