diff options
author | Dan Radez <dradez@redhat.com> | 2016-07-12 17:19:38 -0400 |
---|---|---|
committer | Dan Radez <dradez@redhat.com> | 2016-07-13 14:31:53 -0400 |
commit | 5bec8f5c95158a74f409d175fb6b2de4c1454823 (patch) | |
tree | 3244f6530f1262fad64d5a5f2cf28590cdd243b1 /build | |
parent | b36000ac8c1a2d26ad82b6bc81fb5e4a87440d24 (diff) |
correction to a conditional in nic template
Change-Id: Ibed808350163379fcfa5178c78fabe2f47e491fc
Signed-off-by: Dan Radez <dradez@redhat.com>
Diffstat (limited to 'build')
-rw-r--r-- | build/nics-template.yaml.jinja2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/nics-template.yaml.jinja2 b/build/nics-template.yaml.jinja2 index 455ae0f3..91d0c478 100644 --- a/build/nics-template.yaml.jinja2 +++ b/build/nics-template.yaml.jinja2 @@ -94,7 +94,7 @@ resources: name: nic1 # force the MAC address of the bridge to this interface primary: true - {%- if 'public_network' in enabled_networks and vlans['private_network'] is number %} + {%- if 'public_network' in enabled_networks and vlans['public_network'] is number %} - type: vlan vlan_id: {get_param: ExternalNetworkVlanID} |