]> andersk Git - gssapi-openssh.git/commitdiff
o Add bundle signing script
authorcphillip <cphillip>
Thu, 15 Jan 2004 18:48:38 +0000 (18:48 +0000)
committercphillip <cphillip>
Thu, 15 Jan 2004 18:48:38 +0000 (18:48 +0000)
bundle/scripts/sign-bundle [new file with mode: 0755]

diff --git a/bundle/scripts/sign-bundle b/bundle/scripts/sign-bundle
new file mode 100755 (executable)
index 0000000..351a4f3
--- /dev/null
@@ -0,0 +1,16 @@
+#!/bin/sh
+#
+
+source ./scripts/version.sh
+
+NAME="gsi_openssh_bundle-$VERSION-src.tar.gz"
+
+#
+# sign the bundle
+#
+
+if [ -f $NAME ]; then
+    echo "Signing bundle..."
+    /usr/bin/gpg --armor --output $NAME.asc --detach-sig $NAME
+    /usr/bin/md5sum $NAME > $NAME.md5
+fi
This page took 0.054721 seconds and 5 git commands to generate.