mirror of
https://git.launchpad.net/livecd-rootfs
synced 2026-02-19 00:13:29 +00:00
Imported using git-ubuntu import.
Changelog parent: 8a676fab2386045951488682d8462bac68dc53f6
New changelog entries:
[ James Hunt ]
* ubuntu-core:
- Don't remove doc to be kind to devs.
- Boot with systemd (temporary method until we have systemd-sysv).
- Configure first network interface.
10 lines
145 B
Bash
Executable File
10 lines
145 B
Bash
Executable File
#!/bin/sh -x
|
|
|
|
if=eth0
|
|
|
|
# Manually configure the first ethernet device
|
|
cat >/etc/network/interfaces.d/"$if"<<EOT
|
|
auto $if
|
|
iface $if inet dhcp
|
|
EOT
|