Fix quoting in host_vars from last commit
Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
parent
a85540d10e
commit
6423bf52a2
4 changed files with 4 additions and 4 deletions
|
@ -22,7 +22,7 @@ sudoers: "{{ private }}/files/sudo/qavirt-sudoers"
|
|||
# else alone. We use a variable definition here so the firewall config
|
||||
# (in the openqa_tap_workers group_vars) can reuse it.
|
||||
openqa_tap_iface: eth0
|
||||
ansible_ifcfg_whitelist: [{{ openqa_tap_iface }}, 'eth1', 'eth2']
|
||||
ansible_ifcfg_whitelist: ['{{ openqa_tap_iface }}', 'eth1', 'eth2']
|
||||
ansible_ifcfg_disabled: ['eth1', 'eth2']
|
||||
|
||||
# this is a powerful machine, can handle more openQA workers
|
||||
|
|
|
@ -21,7 +21,7 @@ sudoers: "{{ private }}/files/sudo/qavirt-sudoers"
|
|||
# else alone. We use a variable definition here so the firewall config
|
||||
# (in the openqa_tap_workers group_vars) can reuse it.
|
||||
openqa_tap_iface: eth2
|
||||
ansible_ifcfg_whitelist: ['eth0', 'eth1', {{ openqa_tap_iface }}, 'eth3']
|
||||
ansible_ifcfg_whitelist: ['eth0', 'eth1', '{{ openqa_tap_iface }}', 'eth3']
|
||||
ansible_ifcfg_disabled: ['eth0', 'eth1', 'eth3']
|
||||
|
||||
# this is a powerful machine, can handle more openQA workers
|
||||
|
|
|
@ -20,7 +20,7 @@ gw: 10.5.124.254
|
|||
# else alone. We use a variable definition here so the firewall config
|
||||
# (in the openqa_tap_workers group_vars) can reuse it.
|
||||
openqa_tap_iface: em3
|
||||
ansible_ifcfg_whitelist: ['em1', 'em2', {{ openqa_tap_iface }}, 'em4']
|
||||
ansible_ifcfg_whitelist: ['em1', 'em2', '{{ openqa_tap_iface }}', 'em4']
|
||||
ansible_ifcfg_disabled: ['em1', 'em2', 'em4']
|
||||
|
||||
# Has a hardware RNG
|
||||
|
|
|
@ -20,7 +20,7 @@ gw: 10.5.124.254
|
|||
# else alone. We use a variable definition here so the firewall config
|
||||
# (in the openqa_tap_workers group_vars) can reuse it.
|
||||
openqa_tap_iface: em3
|
||||
ansible_ifcfg_whitelist: ['em1', 'em2', {{ openqa_tap_iface }}, 'em4']
|
||||
ansible_ifcfg_whitelist: ['em1', 'em2', '{{ openqa_tap_iface }}', 'em4']
|
||||
ansible_ifcfg_disabled: ['em1', 'em2', 'em4']
|
||||
|
||||
# Has a hardware RNG
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue