mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-15 07:56:36 +00:00
2733c5f0e6
PR: 24128 Submitted by: MAINTAINER
16 lines
169 B
Bash
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
|