2733c5f0e6
PR: 24128 Submitted by: MAINTAINER
15 lines
169 B
Bash
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
|