livecd-rootfs/live-build/ubuntu-desktop-next/hooks/04-configure_network.chroot

10 lines
154 B
Plaintext
Raw Normal View History

#!/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