Repository URL to install this package:
|
Version:
3.5.1-14.el7 ▾
|
#!/bin/sh
#
# 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="/usr"
exec_prefix="/usr"
sbindir="/usr/sbin"
amlibexecdir="/usr/lib64/amanda"
. "${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=~amandabackup
AM_AESPIPE=/usr/sbin/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