mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-02-10 04:37:29 +00:00
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
|