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:
Kevin Fenzi 2021-05-04 08:52:52 -07:00
parent f7f7a3e8de
commit 3c12ef6aa9
231 changed files with 947 additions and 949 deletions

View file

@ -3,15 +3,15 @@ vmhost: bvmhost-a64-02.iad2.fedoraproject.org
datacenter: iad2
dns1: 10.3.163.33
dns2: 10.3.163.34
has_ipv4: yes
eth0_ipv4: 10.3.170.95
eth0_ipv4_nm: 24
eth0_ipv4_gw: 10.3.170.254
has_ipv6: no
mac0: 52:54:00:d8:ce:90
mac0: 52:54:00:d8:ce:90
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