diff -Nru cloud-initramfs-tools-0.27ubuntu1.3/debian/changelog cloud-initramfs-tools-0.27ubuntu1.4/debian/changelog --- cloud-initramfs-tools-0.27ubuntu1.3/debian/changelog 2016-11-29 01:12:51.000000000 +0000 +++ cloud-initramfs-tools-0.27ubuntu1.4/debian/changelog 2016-11-30 14:35:26.000000000 +0000 @@ -1,3 +1,9 @@ +cloud-initramfs-tools (0.27ubuntu1.4) xenial; urgency=medium + + * Deliver the correct interface stanzas. + + -- LaMont Jones Wed, 30 Nov 2016 07:35:26 -0700 + cloud-initramfs-tools (0.27ubuntu1.3) xenial; urgency=medium * sync with upstream at 0.32ubuntu1 (revno 129) diff -Nru cloud-initramfs-tools-0.27ubuntu1.3/dyn-netconf/scripts/init-bottom/cloud-initramfs-dyn-netconf cloud-initramfs-tools-0.27ubuntu1.4/dyn-netconf/scripts/init-bottom/cloud-initramfs-dyn-netconf --- cloud-initramfs-tools-0.27ubuntu1.3/dyn-netconf/scripts/init-bottom/cloud-initramfs-dyn-netconf 2016-11-28 21:57:12.000000000 +0000 +++ cloud-initramfs-tools-0.27ubuntu1.4/dyn-netconf/scripts/init-bottom/cloud-initramfs-dyn-netconf 2016-11-30 14:35:17.000000000 +0000 @@ -142,9 +142,9 @@ # We need to use care, since the script is running set -e. echo "manual $DEVICE" if [ "$IPV4PROTO" = "dhcp" ]; then - echo "iface $DEVICE inet dhcp" + echo "iface $DEVICE inet manual" elif [ "$IPV4PROTO" = "static" ]; then - echo "iface $DEVICE inet static" + echo "iface $DEVICE inet manual" if [ -n "$IPV4ADDR" ]; then printf "\t%s\n" "address $IPV4ADDR" else @@ -159,9 +159,9 @@ printf "\t%s\n" "gateway $IPV4GATEWAY" fi elif [ "$IPV6PROTO" = "dhcp6" ]; then - echo "iface $DEVICE inet6 dhcp" + echo "iface $DEVICE inet6 manual" elif [ "$IPV6PROTO" = "static" ]; then - echo "iface $DEVICE inet6 static" + echo "iface $DEVICE inet6 manual" if [ -n "$IPV6ADDR" ]; then printf "\t%s\n" "address $IPV6ADDR" else