chiark / gitweb /
bin/run-mirrors: Use id(1) to find current user name.
[mirror-admin] / bin / run-mirrors
CommitLineData
db2c5b8b
MW
1#! /bin/sh
2
3set -e
4
5## Make sure we're running as the right user.
fb775fef 6case $(id -un) in
db2c5b8b
MW
7 mirror) ;;
8 *) exec userv -fstdin=/dev/null mirror run ;;
9esac
10
11## Set up a plausible environment.
12HOME=/mnt/ftp/mirror-admin; export HOME; cd
13PATH=$HOME/bin:/usr/bin:/usr/sbin:/bin:/sbin:/usr/local/bin:/usr/local/sbin
14export PATH
15umask 002
16
17## Make sure we're running with a lock file.
18case "${MIRROR_LOCKED-nil}" in
19 nil) exec env MIRROR_LOCKED=t locking -f var/mirror.lock "$0" "$@" ;;
20esac
21
22## Before we start, rotate the logs. (Doing things this way means that we
23## can be sure we don't lose new logs, even if the log rotation goes
24## completely mental.
25logrotate -s var/logrotate.state etc/logrotate.conf
26
27## Let SIGINT take out the children only.
28trap "" INT
29
30## Now do the various mirroring things.
31for file in $(run-parts --list etc/mirrors.d); do
32 [ -x "$file" ] || continue
33 base=${file##*/}; base=${base#[0-9]*-}
34 (
35 echo
36 echo "***--------------------------------------------------"
37 echo "*** Running $base at $(date +%Y-%m-%dT%H:%M:%S)"
38 echo
39 set +e; (trap - INT; exec "$file"); rc=$?; set -e
40 echo
41 echo "*** Finished $(date +%Y-%m-%dT%H:%M:%S); rc = $rc"
42 ) >>log/$base.log 2>&1
43done