Viitor_cdboot/etc/init/hostname.conf
kueller d77f5c8ef2 mountfs verwendet jetzt status_message(). hostname wird korrekt gesetzt
git-svn-id: svn://svn.compuextreme.de/Viitor/V962/Viitor_cdboot@5606 504e572c-2e33-0410-9681-be2bf7408885
2010-05-01 11:42:39 +00:00

19 lines
525 B
Plaintext

description "Setup System Hostname"
author "Harald Kueller <harald.kueller@compuextreme.de>"
version 1.0
emits none special
start on ( runlevel [S012345] and ( started udev ))
console none
script
if ip addr list dev eth0|grep -q inet; then
IP=`ifconfig eth0|grep inet|awk '{print $2}'|cut -d ":" -f 2`
echo "$IP ViitorLinux_install" >>/etc/hosts
else
sed -e "s/127\.0\.0\.1.*$/127.0.0.1 localhost ViitorLinux_install/" /etc/hosts >/tmp/hosts
mv /tmp/hosts /var/etc/hosts
fi
hostname ViitorInstall
end script