core/portmap/portmap
2006-02-23 15:26:10 +00:00

24 lines
242 B
Bash
Executable File

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