8 lines
160 B
Plaintext
8 lines
160 B
Plaintext
|
#!/bin/sh -efu
|
||
|
# attempt to autoconfigure ethernet
|
||
|
|
||
|
mkdir -p /etc/net/ifaces/eth0 && {
|
||
|
echo TYPE=eth
|
||
|
echo BOOTPROTO=dhcp
|
||
|
} > /etc/net/ifaces/eth0/options ||:
|