]> git.sur5r.net Git - bacula/bacula/commitdiff
Tweak release directory
authorKern Sibbald <kern@sibbald.com>
Wed, 12 Aug 2015 14:43:27 +0000 (16:43 +0200)
committerEric Bollengier <eric@baculasystems.com>
Thu, 13 Aug 2015 06:51:50 +0000 (08:51 +0200)
bacula/release/config
bacula/release/makerescuerel [deleted file]
bacula/release/upload

index 578e103cdbe5a3cfa66e84479333c034ba32e74a..e6d9cbfce96df3316374f943008f6646c4f5ac3a 100644 (file)
@@ -6,10 +6,10 @@
 #
 # Set to the Branch you are working on
 #
-branch=${branch:-Branch-5.3}
+branch=${branch:-Branch-7.2}
 #
 # set reltype to release or beta -- for upload and setting DEVELOPER
-reltype=beta
+reltype=release
 
 repo=$reltype
 
diff --git a/bacula/release/makerescuerel b/bacula/release/makerescuerel
deleted file mode 100755 (executable)
index 9eda404..0000000
+++ /dev/null
@@ -1,83 +0,0 @@
-#!/bin/sh
-#
-# Copyright (C) 2000-2015 Kern Sibbald
-# License: BSD 2-Clause; see file LICENSE-FOSS
-#
-# This script is used to make a Bacula rescue release
-#   rescue
-# It writes in the current directory, so we recommend that you
-#  do not run it in the Bacula source or Git directory, but
-#  in a special release directory.
-#
-# Commit all changes, export the release, make a release tar.
-#
-cwd=`pwd`
-reltype=release
-tagbase=Release-
-base_pkg=bacula-rescue
-base_dir=rescue
-branch=$2
-
-if [ $# != 2 ] ; then
-  echo "Need $0 <rescue-source-directory> <branch>"
-  echo "e.g. $0 rescue-source master"
-  exit 1
-fi
-cd $1
-if [ $? -ne 0 ]; then
-   echo "Directory: $1 does not exist"
-   exit 1
-fi
-cd $base_dir
-if [ $?  -ne 0 ]; then
-   echo "Directory: $1 does not exist"
-   exit 1
-fi
-
-src=`pwd` 
-git checkout ${branch}
-if [ $? -ne 0 ]; then
-   echo "Checkout of branch ${branch} in ${src} failed."
-   exit 1
-fi
-git pull origin ${branch}
-ver=`sed -n -e 's/^.*VERSION.*"\(.*\)"$/\1/p' version.h`
-fulltag=$tagbase$ver
-echo " "
-echo "Making $reltype for $base_pkg-$ver ..."
-echo " "
-echo "OK?  ctl-c to stop"
-read a
-
-git tag -d ${fulltag}
-echo "Creating new tag -- $fulltag"
-git tag $fulltag
-if [ $? != 0 ] ; then
-  echo " "
-  echo "Non-zero return status from Git"
-  echo " "
-  exit 1
-fi
-echo "Create Tag $fulltag done"
-cd ${cwd}
-rm -rf $base_pkg-$ver $base_pkg-$ver.tar.gz $base_pkg-$ver.tar.gz.sig
-rm -rf $fulltag
-cd ${src}
-git archive --format=tar --prefix=$base_pkg-$ver/ $fulltag | gzip >${cwd}/$base_pkg-$ver.tar.gz
-if [ $? != 0 ] ; then
-  echo " "
-  echo "Non-zero return status from Git"
-  echo " "
-  exit 1
-fi
-echo "Exported release into ${cwd}/$base_pkg-$ver.tar.gz"
-git checkout master
-cd ${cwd}
-./sign $base_pkg-$ver.tar.gz
-ls -l $base_pkg-$ver.tar.*
-
-if [ a$push != ano ]; then
-   cd ${src}
-   git push origin $branch
-   git push origin tag $fulltag
-fi
index f1d18bb7c214613042083e3be59a1d745e6825e3..184408e3ba9dd7fa8bbdfe59ba8787db835c0511 100755 (executable)
@@ -3,33 +3,34 @@
 # Copyright (C) 2000-2015 Kern Sibbald
 # License: BSD 2-Clause; see file LICENSE-FOSS
 #
-# Upload to File Release System on server
+# Upload to File Release System on serfullver
 #
 . ./config
 
-ver="7.0.5"
+ver="7.2.0"
+fullver="bacula-7.2.0"
 RSYNC="rsync -av --no-g --progress $upload_opt"
 
 do_upload()
 {
 where=$1
-echo "Creating ${where}:/home/src/$ver"
+echo "Creating ${where}:/var/www/bacula/downloads/$fullver"
 ssh ${where} <<EOF
-cd /home/src
-mkdir -p $ver
+cd /var/www/bacula/downloads/
+mkdir -p $fullver
 EOF
 
 echo "Uploading source"
 for i in bacula-*-$ver*; do \
-   echo "Uplod $i to ${where}:/home/src/$ver"
-   $RSYNC $i ${where}:/home/src/$ver/; \
+   echo "Uplod $i to ${where}:/var/www/bacula/downloads/$fullver"
+   $RSYNC $i ${where}:/var/www/bacula/downloads/$fullver/; \
 done
 
 # Upload release notes
-echo "Uplod ReleaseNote to ${where}:/home/src/$ver"
-$RSYNC ReleaseNotes ${where}:/home/src/$ver/
-echo "Uplod ChangeLog to ${where}:/home/src/$ver"
-$RSYNC ChangeLog ${where}:/home/src/$ver/
+echo "Uplod ReleaseNote to ${where}:/var/www/bacula/downloads/$fullver"
+$RSYNC ReleaseNotes ${where}:/var/www/bacula/downloads/$fullver/
+echo "Uplod ChangeLog to ${where}:/var/www/bacula/downloads/$fullver"
+$RSYNC ChangeLog ${where}:/var/www/bacula/downloads/$fullver/
 
 
 }