diff --git a/elements/fedora/post-install.d/06-network-config-nonzeroconf b/elements/fedora/post-install.d/06-network-config-nonzeroconf new file mode 100755 index 000000000..5e3f2cedb --- /dev/null +++ b/elements/fedora/post-install.d/06-network-config-nonzeroconf @@ -0,0 +1,8 @@ +#!/bin/sh + +# zeroconf should not be activated or it will add a 169.254.0.0 +# route. The route will interfere with access to the nova metadata +# server at 169.254.169.254. +if ! grep NOZEROCONF /etc/sysconfig/network ; then + echo "NOZEROCONF=yes" >> /etc/sysconfig/network +fi