nixpkgs/pkgs/servers/network-script/network
Armijn Hemel 67971a4349 dhclient would return 0 if invoked without an interface argument, so set this
to eth0. Oh, what a hack...but it works :)

svn path=/nixpkgs/trunk/; revision=5050
2006-03-17 16:33:59 +00:00

67 lines
785 B
Bash
Executable file

#!@bash@/bin/bash
#
# Dummy init file for network, hacketyhack!
#
# chkconfig: 2345 55 25
# description: OpenSSH server daemon
#
# processname: sshd
# source function library
source @initscripts@/functions
# pull in sysconfig settings
#[ -f /etc/sysconfig/sshd ] && . /etc/sysconfig/sshd
RETVAL=0
prog="network"
INTERFACE=eth0
startService()
{
# just do networking
echo -n "Starting $prog:"
@dhcp@/sbin/dhclient $INTERFACE
RETVAL=$?
echo "retval $RETVAL"
return $RETVAL
}
stopService()
{
echo "BLAAT"
}
reload()
{
start
stop
}
case "$1" in
start)
start
;;
stop)
stop
;;
restart)
stop
start
;;
reload)
reload
;;
status)
status
;;
name)
name
;;
*)
echo $"Usage: $0 {start|stop|restart|reload|status|name}"
RETVAL=1
esac
exit $RETVAL