#!/bin/sh
#
# portmap.service - portmap(8) service file
#

case $1 in
start)
	/usr/sbin/portmap
	;;
stop)	killall -q portmap
	;;
*)
	echo "usage: $0 start|stop"
esac
