aboutsummaryrefslogtreecommitdiffstats
path: root/net/mars_nwe/files/nwserv.sh
blob: 67a7a4bf9b842f7b7cda12da6bce80f1992c1b13 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

PREFIX=/usr/local

PROG=${PREFIX}/sbin/nwserv

if [ x$1 = xstart ]; then
	(sleep 120;${PROG}) &
elif [ "x$1" = "xstop" ]; then
	${PROG} -k
fi