You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
376 B
19 lines
376 B
7 years ago
|
#!/bin/sh
|
||
|
|
||
|
. /etc/init.d/globals
|
||
|
|
||
|
case $1 in
|
||
|
start)
|
||
|
if [ ! -f /etc/hostname ]; then
|
||
6 years ago
|
box_model=$(grep "^box_model=" /.version | cut -d'=' -f2)
|
||
7 years ago
|
hwaddr=$(ifconfig eth0 | awk '/HWaddr/ { split($5,v,":"); print v[4] v[5] v[6] }')
|
||
6 years ago
|
echo "${box_model}.NI-${hwaddr}" > /etc/hostname
|
||
7 years ago
|
fi
|
||
|
|
||
|
hostname -F /etc/hostname
|
||
|
;;
|
||
|
*)
|
||
|
echo "[$BASENAME] Usage: $0 {start}"
|
||
|
;;
|
||
|
esac
|