From 9ae1cd8f91aa6b53404e66588679d852d3972bcd Mon Sep 17 00:00:00 2001 From: Holger Weiss Date: Fri, 27 Sep 2013 23:10:53 +0200 Subject: tools: Remove Drupal/SourceForge scripts We moved our web site away from Drupal and the snapshots/guidelines away from SourceForge. The new infrastructure scripts will be maintained in a separate repository together with the Markdown source of the new web site. --- tools/sfupload | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100755 tools/sfupload (limited to 'tools/sfupload') diff --git a/tools/sfupload b/tools/sfupload deleted file mode 100755 index 8925fcb5..00000000 --- a/tools/sfupload +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/bash -# SYNTAX: -# sfupload {version} [username] -# Quick script to upload new nagiosplug tarball to SF -# Expects $1 = version number of tarball -# $2 to be username on SF, defaults to $USER -# Expects to be run from top level dir - -function die { echo $1; exit 1; } - -tarball="nagios-plugins-$1.tar.gz" - -if [[ ! -e $tarball ]]; then - die "No tarball found: $tarball"; -fi -md5sum $tarball > $tarball.md5sum - -user=${2:-$USER} -echo "Logging in as $user" -cat <