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 ...]"
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 branches/name, otherwise uses trunk
21 svn_url_suffix
="trunk"
26 # Get compile server to do the work
27 # Variables will be expanded locally before being run on $CF
30 PATH=$PATH:/usr/local/bin
31 [[ ! -d $COMPILE_DIR/$name ]] && mkdir -p $COMPILE_DIR/$name
34 # Cannot use cvs export due to conflicts on second run - think this is better for cvs server
35 svn export https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/$svn_url_suffix $PROJECT
43 # Make the Nagiosplug dist tarball
44 make dist VERSION=$v$DS RELEASE=snapshot
46 # May fail if file not generated - do not trap
54 # Set working variables
57 # This is local to the compile server for faster compile
58 COMPILE_DIR
=/tmp
/tonvoon
/tmp_snapshot
60 # Needs to be on NFS so gz file can be read on the compile shell server
61 IN
=${HOME}/tmp_snapshot
63 # Where to place the generated files
64 OUT_SERVER
="tonvoon@web.sourceforge.net"
65 OUT
="/home/groups/n/na/nagiosplug/htdocs/snapshot"
67 # Make sure prereqs are satisfied on server!
69 DS
=`date -u +%Y%m%d%H%M`
71 # Setup home directory area
72 [[ ! -d $IN ]] && mkdir
-p $IN
74 # Make dists for HEAD and any others in command parameters
82 cat <<-END_README > README
83 This is the daily SVN snapshot of nagiosplug, consisting of the SVN trunk
84 and any other branches.
86 The nagios-plugins-HEAD.tar.gz link will always go to the latest trunk snapshot
87 (name kept for existing tinderbox scripts to link correctly).
91 md5sum *.gz |
tee -a README
> MD5SUM
94 # Check for *.gz files locally (expect NFS between cf shell server and $CF)
97 files
=$
(ls *.gz
2>/dev
/null
)
98 [[ -z $files ]] && die
"No files created"
99 head_file
=$
(cd $IN && ls -rt *-trunk-*.gz |
head -1 2>/dev
/null
)
100 cat <<-EOF > /tmp/batchfile.$$
104 ln $head_file nagios-plugins-HEAD.tar.gz
109 # Do the actual transfer
110 # Have to put README down as readme because SF's apache server appears to block README files
111 sftp
-b /tmp
/batchfile.$$
$OUT_SERVER
113 rm -f $files /tmp
/batchfile.$$
115 # Work out success or failure
118 [[ $# -ne $expected ]] && die
"Expected $expected, got $#"