Skip to content
Snippets Groups Projects
Commit 120afda7 authored by Kurt Zeilenga's avatar Kurt Zeilenga Committed by Quanah Gibson-Mount
Browse files

Updates for new servers

parent 42582d06
No related branches found
No related tags found
No related merge requests found
......@@ -36,6 +36,16 @@ shift
TAG=$1
shift
#Linux
#SHA="sha1sum"
#MD="md5sum"
#BSD
#SHA="sha1"
#MD="md5"
#OpenSSL
SHA="openssl sha1"
MD="openssl md5"
if test -e $RELNAME ; then
echo "error: $RELNAME exists"
exit 1
......@@ -75,8 +85,8 @@ echo "Rolling up $OL_STRING ..."
tar cf $RELNAME.tar $RELNAME
gzip -9 -c $RELNAME.tar > $RELNAME.tgz
openssl md5 $RELNAME.tgz > $RELNAME.md5
openssl sha1 $RELNAME.tgz > $RELNAME.sha1
${MD} $RELNAME.tgz > $RELNAME.md5
${SHA} $RELNAME.tgz > $RELNAME.sha1
rm -f $RELNAME.tar
ls -l $RELNAME.*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment