opt/linux-identd/identd
2006-02-23 17:10:28 +00:00

24 lines
251 B
Bash
Executable File

#!/bin/sh
#
# /etc/rc.d/identd: start/stop ident daemon
#
case $1 in
start)
/usr/sbin/identd -d -l
;;
stop)
killall -q /usr/sbin/identd
;;
restart)
$0 stop
sleep 2
$0 start
;;
*)
echo "usage: $0 [start|stop|restart]"
;;
esac
# End of file