+++ /dev/null
-### {{ ansible_managed }}
-#set os_version = $getVar('os_version','')
-#if $os_version == 'vivid'
-# deleting interfaces we don't need for vivid.
-# if these are in place then vivid wants to use eth2 as the
-# primary interface
-sed -i '/eth2/d' /etc/udev/rules.d/70-persistent-net.rules
-sed -i '/eth3/d' /etc/udev/rules.d/70-persistent-net.rules
-#end if
-
-rm -f /etc/network/interfaces
-touch /etc/network/interfaces
-
-cat >> /etc/network/interfaces << EOF
-# This file describes the network interfaces available on your system
-# and how to activate them. For more information, see interfaces(5).
-
-# The loopback network interface
-auto lo
-iface lo inet loopback
-
-# The primary network interface
-auto eth0
-iface eth0 inet dhcp
-# This is an autoconfigured IPv6 interface
-iface eth0 inet6 auto
-EOF
-
-{% if resolvconf|length > 0 %}
-rm -f /etc/resolv.conf
-touch /etc/resolv.conf
-
-cat >> /etc/resolv.conf << EOF
-{% for line in resolvconf %}
-{{ line }}
-{% endfor %}
-EOF
-
-cat >> /etc/resolvconf/resolv.conf.d/base << EOF
-{% for line in resolvconf %}
-{{ line }}
-{% endfor %}
-EOF
-{% endif %}