summaryrefslogtreecommitdiffstats
path: root/projectroot/etc/init.d/portmapd
blob: 5a3f36315fee953d924bada351509bacd315fd12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
#
# portmap
#
case $1 in

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

esac