opt/oidentd/oidentd

25 lines
249 B
Plaintext
Raw Normal View History

2006-02-23 15:26:10 +00:00
#!/bin/bash
#
# /etc/rc.d/oidentd
#
case "$1" in
start)
/usr/sbin/oidentd -C /etc/oidentd.conf -u nobody -l 10
;;
stop)
killall /usr/sbin/oidentd
;;
restart)
$0 stop
$0 start
;;
*)
echo "Usage: $0 {start|stop}"
;;
esac
#
# End of file
#