#!/bin/sh
#
# portmap
#
case $1 in

	start)
		echo "portmap starting"
		/sbin/portmap
		;;

esac
