freebsd-ports/net/iplog/files/iplog.sh.tmpl
2001-01-07 18:57:24 +00:00

15 lines
169 B
Bash

#!/bin/sh
#
umask 022
arg=${1:-start}
test -x PREFIX/sbin/iplog || exit 1
echo -n " iplog"
case $arg in
start)
PREFIX/sbin/iplog -d -z;;
stop)
killall iplog;;
esac