diff options
author | Markos Chandras <mchandras@suse.de> | 2018-03-12 08:44:06 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2018-03-12 08:44:06 +0000 |
commit | 5e2e51892e73bbb71714fb2713d7c1abeb80bfdc (patch) | |
tree | 24e193e53158c1f5a7c40e810312e673024a847a | |
parent | 78e1ec95b4b00de6451bbb495ab52f529fdb68ef (diff) | |
parent | 2ff7ba7b99e5b5e8da83c0bc1f63c71669d7e972 (diff) |
Merge "xci: roles: configure-network: Avoid passing empty string to module"
-rw-r--r-- | xci/playbooks/roles/configure-network/tasks/main.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xci/playbooks/roles/configure-network/tasks/main.yml b/xci/playbooks/roles/configure-network/tasks/main.yml index 21f213cb..01edf459 100644 --- a/xci/playbooks/roles/configure-network/tasks/main.yml +++ b/xci/playbooks/roles/configure-network/tasks/main.yml @@ -17,7 +17,7 @@ network_packages: - bridge-utils - "{{ (ansible_pkg_mgr in ['zypper', 'apt']) | ternary('iproute2', 'iproute') }}" - - "{{ (ansible_pkg_mgr == 'apt') | ternary('vlan', '') }}" + - "{{ (ansible_pkg_mgr == 'apt') | ternary('vlan', 'bridge-utils') }}" - iptables - name: Ensure networking packages are present |