Imported Upstream version 2.6.0
[debian/amanda] / common-src / amcrypt.sh
diff --git a/common-src/amcrypt.sh b/common-src/amcrypt.sh
new file mode 100755 (executable)
index 0000000..82e1ea6
--- /dev/null
@@ -0,0 +1,47 @@
+#!@SHELL@
+#
+# Original wrapper by Paul Bijnens
+#
+# worked by Stefan G. Weichinger
+# to enable gpg-encrypted dumps via aespipe
+# also worked by Matthieu Lochegnies for server-side encryption
+
+prefix="@prefix@"
+exec_prefix="@exec_prefix@"
+sbindir="@sbindir@"
+amlibexecdir="@amlibexecdir@"
+. "${amlibexecdir}/amanda-sh-lib.sh"
+
+# add sbin and ucb dirs, as well as csw (blastwave)
+PATH="$PATH:/usr/sbin:/sbin:/usr/ucb:/opt/csw/bin"
+export PATH
+
+AMANDA_HOME=~@CLIENT_LOGIN@
+AM_AESPIPE=@sbindir@/amaespipe
+AM_PASSPHRASE=$AMANDA_HOME/.am_passphrase
+
+AESPIPE=`which aespipe`
+
+if [ $? -ne 0 ] ; then
+       echo `_ '%s: %s was not found in %s' "$0" "aespipe" "$PATH"` >&2
+        exit 2
+fi
+
+if [ ! -x $AESPIPE ] ; then
+       echo `_ '%s: %s is not executable' "$0" "aespipe"` >&2
+        exit 2
+fi
+
+if [ ! -x $AM_AESPIPE ] ; then
+        echo `_ '%s: %s was not found' "$0" "$AM_AESPIPE"` >&2
+        exit 2
+fi
+if [ ! -x $AM_AESPIPE ] ; then
+        echo `_ '%s: %s is not executable' "$0" "$AM_AESPIPE"` >&2
+        exit 2
+fi
+
+$AM_AESPIPE "$@" 3< $AM_PASSPHRASE
+
+rc=$?
+exit $rc