Add sample startup script

PR:		35701
Submitted by:	Kimura Fuyuki <fuyuki@mj.0038.net>
This commit is contained in:
Patrick Li 2002-03-09 17:57:58 +00:00
parent 382d3f7a25
commit a9c5b21221
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=55770
3 changed files with 26 additions and 0 deletions

View File

@ -29,4 +29,7 @@ post-patch:
s,/usr/local,${PREFIX},g" ${WRKSRC}/main.h
@${PERL} -pi -e "s,/etc,${PREFIX}/etc,g" ${WRKSRC}/${MAN8}
post-install:
@${INSTALL_SCRIPT} ${FILESDIR}/fwlogwatch.sh.sample ${PREFIX}/etc/rc.d
.include <bsd.port.mk>

View File

@ -0,0 +1,22 @@
#!/bin/sh
if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/$(basename $0)\$"); then
echo "$0: Cannot determine the PREFIX" >&2
exit 1
fi
case "$1" in
start)
if [ -x ${PREFIX}/sbin/fwlogwatch ]; then
${PREFIX}/sbin/fwlogwatch -R && echo -n ' fwlogwatch'
fi
;;
stop)
killall fwlogwatch && echo -n ' fwlogwatch'
;;
*)
echo "Usage: `basename $0` {start|stop}" >&2
;;
esac
exit 0

View File

@ -1,5 +1,6 @@
etc/fwlogwatch.config
etc/fwlogwatch.template
etc/rc.d/fwlogwatch.sh.sample
sbin/fwlogwatch
sbin/fwlw_notify
sbin/fwlw_respond