mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-14 23:46:10 +00:00
12 lines
153 B
Bash
12 lines
153 B
Bash
#!/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
|