Killed trailing spaces in group/host vars with fire.
Normally it's just a nitpick to not have trailing spaces on variables. However, for some things like mac address, it really matters. Bunches of buildhw's were failing ansibile because they were passing "mac address " to linux-system-roles networking and ansible was going 'huh, nope, I can't find that mac address here at all'. So, just blow all the tailing spaces away to avoid any other variables that hit this. Signed-off-by: Kevin Fenzi <kevin@scrye.com>
This commit is contained in:
parent
f7f7a3e8de
commit
3c12ef6aa9
231 changed files with 947 additions and 949 deletions
|
@ -3,15 +3,15 @@ vmhost: bvmhost-a64-01.iad2.fedoraproject.org
|
|||
datacenter: iad2
|
||||
dns1: 10.3.163.33
|
||||
dns2: 10.3.163.34
|
||||
|
||||
|
||||
has_ipv4: yes
|
||||
eth0_ipv4: 10.3.170.93
|
||||
eth0_ipv4_nm: 24
|
||||
eth0_ipv4_gw: 10.3.170.254
|
||||
|
||||
has_ipv6: no
|
||||
|
||||
mac0: 52:54:00:9c:4e:9d
|
||||
|
||||
mac0: 52:54:00:9c:4e:9d
|
||||
|
||||
network_connections:
|
||||
- name: eth0
|
||||
|
@ -19,13 +19,13 @@ network_connections:
|
|||
state: up
|
||||
type: ethernet
|
||||
ip:
|
||||
address:
|
||||
address:
|
||||
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}"
|
||||
gateway4: "{{ eth0_ipv4_gw }}"
|
||||
dns:
|
||||
dns:
|
||||
- "{{ dns1 }}"
|
||||
- "{{ dns2 }}"
|
||||
dns_search:
|
||||
dns_search:
|
||||
- iad2.fedoraproject.org
|
||||
- fedoraproject.org
|
||||
dhcp4: no
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue