summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorTon Voon <tonvoon@users.sourceforge.net>2005-11-18 12:56:08 (GMT)
committerTon Voon <tonvoon@users.sourceforge.net>2005-11-18 12:56:08 (GMT)
commit2af811c0a63855561b420d245e634b28de215b3e (patch)
tree8373177209ee486de4538b133e1a7feff56f50be /tools
parent9d9834647c7d704017bb8e27aefee7b081aa0bb1 (diff)
downloadmonitoring-plugins-2af811c0a63855561b420d245e634b28de215b3e.tar.gz
Create a permanent link to HEAD snapshot
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1288 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'tools')
-rwxr-xr-xtools/sfsnapshot9
1 files changed, 8 insertions, 1 deletions
diff --git a/tools/sfsnapshot b/tools/sfsnapshot
index c9c56bd..1a8a02f 100755
--- a/tools/sfsnapshot
+++ b/tools/sfsnapshot
@@ -80,15 +80,22 @@ done
80set -x 80set -x
81files=$(ls $IN/*.gz 2>/dev/null) 81files=$(ls $IN/*.gz 2>/dev/null)
82[[ -z $files ]] && die "No files created" 82[[ -z $files ]] && die "No files created"
83head_file=$(cd $IN && ls *HEAD*.gz 2>/dev/null)
83ssh -2 $OUT_SERVER "rm -f $OUT/*.gz" 84ssh -2 $OUT_SERVER "rm -f $OUT/*.gz"
84scp -2 $files $OUT_SERVER:$OUT 85scp -2 $files $OUT_SERVER:$OUT
86if [[ -n $head_file ]] ; then
87 ssh -2 $OUT_SERVER "cd $OUT && ln -s $head_file nagios-plugins-HEAD.tar.gz"
88fi
85 89
86# Create MD5 sum 90# Create MD5 sum
87ssh -2 $OUT_SERVER << EOF 91ssh -2 $OUT_SERVER << EOF
88cd $OUT 92cd $OUT
89cat <<-END_README > README 93cat <<-END_README > README
90This is the daily CVS snapshot of nagiosplug, consisting of the CVS HEAD 94This is the daily CVS snapshot of nagiosplug, consisting of the CVS HEAD
91and any other branches 95and any other branches.
96
97The nagios-plugins-HEAD.tar.gz link will always go to the latest HEAD snapshot.
98
92The MD5SUM is: 99The MD5SUM is:
93END_README 100END_README
94md5sum *.gz | tee -a README > MD5SUM 101md5sum *.gz | tee -a README > MD5SUM