1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-24 21:01:20 +00:00
freebsd-ports/net/cvsup-mirror/files/cvsupd.sh
2000-03-05 18:40:28 +00:00

29 lines
537 B
Bash

#! /bin/sh
if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/cvsupd\.sh\$"); then
echo "$0: Cannot determine the PREFIX" >&2
exit 1
fi
base=${PREFIX}/etc/cvsup
rundir=/var/tmp
out=${rundir}/cvsupd.out
export PATH=/bin:/usr/bin:${PREFIX}/sbin
umask 2
test -x ${PREFIX}/sbin/cvsupd || exit 1
echo -n " cvsupd"
cd ${rundir} || exit
. ${base}/config.sh || exit
arg=${1:-start}
case $arg in
start)
su -f -m ${user} -c \
"cvsupd -e -C 100 -l @${facility} -b ${base} -s sup.client" \
>>${out} 2>&1;;
stop)
killall cvsupd;;
esac