ports/net/cvsup-mirror/files/update.sh.in
John Polstra f83451d8f6 Fix bug: When the net/cvsup-mirror port is installed on a system
with OSVERSION >= 600101, the update.sh script is unable to start
PREFIX/etc/rc.d/cvsupd.sh script, as it doesn't exist. Instead the
cvsupd.sh script is named cvsupd on systems with OSVERSION >=
600101.

PR:		ports/108483
Submitted by:	Scot Hetzel
2007-01-29 01:13:35 +00:00

59 lines
1.2 KiB
Bash

#! /bin/sh
if ! PREFIX=$(expr $0 : "\(/.*\)/etc/cvsup/update\.sh\$"); then
echo "$0: Cannot determine the PREFIX" >&2
exit 1
fi
export PREFIX
export CVSUP_ARGS="$*"
export PATH=/bin:/usr/bin:${PREFIX}/bin
lock=/var/spool/lock/cvsup.lock
log=/var/log/cvsup.log
umask 22
exec >>${log} 2>&1
# Do the update
date "+CVSup update begins at %Y-%m-%d %T"
# The rest of this is executed while holding the lock file, to ensure that
# multiple instances won't collide with one another.
lockf -t 0 ${lock} /bin/sh << 'E*O*F'
base=${PREFIX}/etc/cvsup
rundir=/var/tmp
cd ${rundir} || exit
. ${base}/config.sh || exit
colldir=sup.client
startup=${PREFIX}/etc/rc.d
eval chome=~${cuser}
cmd="exec env HOME=${chome} cvsup"
options="-1gL 1 -b ${base} -c ${colldir} ${CVSUP_ARGS}"
umask 2
ok=yes
echo "Updating from ${host}"
su -f -m ${cuser} -c \
"${cmd} ${options} -h ${host} ${base}/supfile" || ok=no
if [ ${ok} = yes ]; then
if [ -f ${base}/.start_server ]; then
if [ -x ${startup}/%%CVSUPD%% ]; then
echo -n "Starting the server:"
/bin/sh ${startup}/%%CVSUPD%% start
echo "."
fi
rm -f ${base}/.start_server
fi
fi
E*O*F
date "+CVSup update ends at %Y-%m-%d %T"