livecd-rootfs/live-build/ubuntu-desktop-next/hooks/04-configure_network.chroot
Sebastien Bacher c50bcc7160 Revert symlink changes, that creates build issues, copy updated hook
to the desktop-next directory instead
2015-06-10 11:25:53 +02:00

10 lines
154 B
Bash
Executable File

#!/bin/sh -x
if=eth0
# Manually configure the first ethernet device
cat >/etc/network/interfaces.d/"$if"<<EOT
allow-hotplug $if
iface $if inet dhcp
EOT