31 lines
723 B
Text
31 lines
723 B
Text
|
#!/bin/sh
|
||
|
|
||
|
# Source predefined functions and variables
|
||
|
. /etc/profile
|
||
|
|
||
|
# get system.hostname setting
|
||
|
HOSTNAME=$(get_setting system.hostname)
|
||
|
|
||
|
# setup hostname
|
||
|
echo $HOSTNAME > /proc/sys/kernel/hostname
|
||
|
|
||
|
# setup /etc/hosts
|
||
|
rm -f /run/libreelec/hosts
|
||
|
if [ -f /storage/.config/hosts.conf ]; then
|
||
|
cat /storage/.config/hosts.conf > /run/libreelec/hosts
|
||
|
fi
|
||
|
|
||
|
# setup /etc/resolv.conf
|
||
|
rm -f /run/libreelec/resolv.conf
|
||
|
if [ -f /storage/.config/resolv.conf ]; then
|
||
|
cat /storage/.config/resolv.conf > /run/libreelec/resolv.conf
|
||
|
elif [ -f /dev/.kernel_ipconfig -a -f /proc/net/pnp ]; then
|
||
|
cat /proc/net/pnp > /run/libreelec/resolv.conf
|
||
|
else
|
||
|
cat << EOF > /run/libreelec/resolv.conf
|
||
|
nameserver 8.8.8.8
|
||
|
nameserver 8.8.4.4
|
||
|
EOF
|
||
|
fi
|
||
|
|