Code

Change of compile server and cleanups
[nagiosplug.git] / tools / sfsnapshot
1 #! /bin/bash
3 # Butchered version of snapshot
4 # Can only run on the shell compile farm server
5 # Will always create a snapshot of HEAD
6 # If want multiple snapshots, just run with "sfsnapshot [branch ...]"
7 # Assumes:
8 #  ssh setup to send to shell.sf.net and $CF without password prompt
9 #  the compile server has all the prerequisites stated at http://nagiosplug.sourceforge.net/developer-guidelines.html
10 # Install in cron with something like:
11 #  47 * * * * $HOME/bin/mail_error -o $HOME/sfsnapshot.out -m tonvoon@users.sf.net sfsnapshot r1_3_0
13 function die { echo $1; exit 1; }
15 # This makes the distribution. Expects $1 as CVS tag, otherwise uses HEAD
16 function make_dist {
17         if [[ -n $1 ]] ; then
18                 cvs_rel=$1
19                 v="$1-"
20         else
21                 cvs_rel="HEAD"
22                 v="HEAD-"
23         fi
24         
25         # Get compile server to do the work
26         # Variables will be expanded locally before being run on $CF
27         ssh $CF <<EOF
28         set -x
29         PATH=$PATH
30         [[ ! -d $COMPILE_DIR/$cvs_rel ]] && mkdir -p $COMPILE_DIR/$cvs_rel
31         cd $COMPILE_DIR/$cvs_rel
33         # Cannot use cvs export due to conflicts on second run - think this is better for cvs server
34         cvs -z3 -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/nagiosplug co -r $cvs_rel nagiosplug
36         cd $PROJECT
38         # TODO: Maybe this should only be run when necessary?
39         tools/setup
41         ./configure
43         # Make the Nagiosplug dist tarball
44         make dist VERSION=$v$DS RELEASE=snapshot
46         # May fail if file not generated - do not trap
47         mv *.gz $IN
49         # End ssh
50 EOF
51 }
53 # Set working variables
54 PROJECT=nagiosplug
56 # This is local to the compile server for faster compile
57 COMPILE_DIR=/tmp/tonvoon/tmp_snapshot
59 #  Needs to be on NFS so gz file can be read on the compile shell server
60 IN=${HOME}/tmp_snapshot
62 # Where to place the generated files
63 OUT_SERVER="shell.sf.net"
64 OUT="/home/groups/n/na/nagiosplug/htdocs/snapshot"
66 # Make sure prereqs are satisfied on server!
67 CF="x86-solaris1"
68 DS=`date -u +%Y%m%d%H%M`
70 # Setup home directory area
71 [[ ! -d $IN ]] && mkdir -p $IN
73 # Make dists for HEAD and any others in command parameters
74 make_dist
75 for i in $* ; do
76         make_dist $i
77 done
79 # Check for *.gz files locally (expect NFS between cf shell server and $CF)
80 set -x
81 files=$(ls $IN/*.gz 2>/dev/null)
82 [[ -z $files ]] && die "No files created"
83 ssh $OUT_SERVER "rm -f $OUT/*.gz"
84 scp $files $OUT_SERVER:$OUT
86 # Create MD5 sum
87 ssh $OUT_SERVER << EOF
88 cd $OUT
89 cat <<-END_README > README
90 This is the daily CVS snapshot of nagiosplug, consisting of the CVS HEAD
91 and any other branches
92 The MD5SUM is:
93 END_README
94 md5sum *.gz | tee -a README > MD5SUM
95 EOF
97 rm -f $files
99 # Work out success or failure
100 expected=$(($# + 1))
101 set -- $files
102 [[ $# -ne $expected ]] && die "Expected $expected, got $#"
103 exit 0