live-build/ubuntu-core/hooks/04-configure_network.chroot: use

'allow-hotplug' for the network config, not 'auto', to work around
systemd behavior that causes 'auto' to delay the rest of the boot when
DHCP is not available on the network.
This commit is contained in:
Steve Langasek 2015-01-14 22:53:01 -08:00
parent d1b1d9e6c1
commit 6d34c7a9e9
2 changed files with 10 additions and 1 deletions

9
debian/changelog vendored
View File

@ -1,3 +1,12 @@
livecd-rootfs (2.275+ppa2) vivid; urgency=medium
* live-build/ubuntu-core/hooks/04-configure_network.chroot: use
'allow-hotplug' for the network config, not 'auto', to work around
systemd behavior that causes 'auto' to delay the rest of the boot when
DHCP is not available on the network.
-- Steve Langasek <steve.langasek@ubuntu.com> Wed, 14 Jan 2015 22:49:43 -0800
livecd-rootfs (2.275+ppa1) vivid; urgency=low livecd-rootfs (2.275+ppa1) vivid; urgency=low
* live-build/ubuntu-core/hooks/00-uid-gid-fix.chroot_early: * live-build/ubuntu-core/hooks/00-uid-gid-fix.chroot_early:

View File

@ -4,6 +4,6 @@ if=eth0
# Manually configure the first ethernet device # Manually configure the first ethernet device
cat >/etc/network/interfaces.d/"$if"<<EOT cat >/etc/network/interfaces.d/"$if"<<EOT
auto $if allow-hotplug $if
iface $if inet dhcp iface $if inet dhcp
EOT EOT