summaryrefslogtreecommitdiffstats
path: root/bin/do-diffs
blob: 88cc445f6a2801ddff5b944938020860157fe5e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/bin/sh
##
# do diffs for each of the diff groups ($LIST_OF_GROUPS) from <BASEDIR>/bin/env
##

ENVFILE="`dirname $0`/env"

. $ENVFILE

if [ $# -ge 1 ] ; then
    LIST_OF_GROUPS="$*"; export LIST_OF_GROUPS
elif [ "$LIST_OF_GROUPS" = "" ] ; then
	echo "LIST_OF_GROUPS is empty in $ENVFILE"
	exit 1
fi

if [ ! -d $BASEDIR/logs ] ; then
	mkdir $BASEDIR/logs
fi

for GROUP in $LIST_OF_GROUPS
do

	LOCKFILE=/tmp/.$GROUP.run.lock

	(
		echo starting: `date`
		echo

		if [ -f $LOCKFILE ]
		then
			echo hourly config diffs failed: $LOCKFILE exists
			/bin/ls -l $LOCKFILE
		else
			/usr/bin/touch $LOCKFILE
			control_rancid $GROUP
			/bin/rm -f $LOCKFILE
		fi

		echo
		echo ending: `date`
	) >$BASEDIR/logs/$GROUP.`date +%Y%m%d.%H%M%S` 2>&1 
done