mirror of
https://git.launchpad.net/livecd-rootfs
synced 2026-02-17 23:43:29 +00:00
Imported using git-ubuntu import.
Changelog parent: f5af78966b977349a8f7dae9fd2fcc042246d3bc
New changelog entries:
* Create hooks and image build config for the ubuntu-desktop-next
new based on snappy image.
10 lines
154 B
Bash
Executable File
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
|