1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-15 07:56:36 +00:00
freebsd-ports/net/iplog/files/iplog.sh.tmpl
2001-01-07 18:57:24 +00:00

16 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