Greetings.
Over the weekend we deployed a test mirrormanager2-mirrorlist docker container on proxy01.stg. However, that added a weird new network interface there that breaks our base role.
This should fix it...
+1s?
diff --git a/roles/base/tasks/main.yml b/roles/base/tasks/main.yml index 6dfd4f9..7706a80 100644 --- a/roles/base/tasks/main.yml +++ b/roles/base/tasks/main.yml @@ -64,7 +64,7 @@ # - restart NetworkManager - reload NetworkManager-connections - apply interface-changes - when: (virthost is not defined) and (not item.startswith('tun')) and (not item.startswith('virbr')) and (not item.startswith('vnet')) and (hostvars[inventory_hostname]['ansible_' + item.replace('-','_')]['type'] == 'ether') and (ansible_distribution_major_version|int >=7) and hostvars[inventory_hostname]['ansible_' + item.replace('-','_')]['active'] and nmclitest|success and ( not ansible_ifcfg_blacklist ) and ( ansible_ifcfg_whitelist is not defined or item in ansible_ifcfg_whitelist ) + when: (virthost is not defined) and (item.startswith(('eth','br'))) and (hostvars[inventory_hostname]['ansible_' + item.replace('-','_')]['type'] == 'ether') and (ansible_distribution_major_version|int >=7) and hostvars[inventory_hostname]['ansible_' + item.replace('-','_')]['active'] and nmclitest|success and ( not ansible_ifcfg_blacklist ) and ( ansible_ifcfg_whitelist is not defined or item in ansible_ifcfg_whitelist ) tags: - config - ifcfg
+1 This just goes from blacklisting tun and virbr and vnet interfaces to whitelisting eth and br interfaces wrt interfaces to configure.
On Monday, October 10, 2016 10:41:58 PM CDT Patrick Uiterwijk wrote:
+1 This just goes from blacklisting tun and virbr and vnet interfaces to whitelisting eth and br interfaces wrt interfaces to configure. _______________________________________________ infrastructure mailing list -- infrastructure@lists.fedoraproject.org To unsubscribe send an email to infrastructure-leave@lists.fedoraproject.org
+1
infrastructure@lists.fedoraproject.org