2019-07-08 03:51:40 +07:00
|
|
|
#!/bin/bash
|
|
|
|
|
2023-03-30 13:08:47 +07:00
|
|
|
## Copyright (C) 2012 - 2023 ENCRYPTED SUPPORT LP <adrelanos@whonix.org>
|
2019-07-08 03:51:40 +07:00
|
|
|
## See the file COPYING for copying conditions.
|
|
|
|
|
2021-08-03 23:48:57 +07:00
|
|
|
if [ -f /usr/libexec/helper-scripts/pre.bsh ]; then
|
|
|
|
source /usr/libexec/helper-scripts/pre.bsh
|
2019-07-08 03:51:40 +07:00
|
|
|
fi
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
true "
|
|
|
|
#####################################################################
|
|
|
|
## INFO: BEGIN: $DPKG_MAINTSCRIPT_PACKAGE $DPKG_MAINTSCRIPT_NAME $@
|
|
|
|
#####################################################################
|
|
|
|
"
|
|
|
|
|
2019-07-13 18:41:37 +07:00
|
|
|
if [ "$1" = remove ]; then
|
|
|
|
pam-auth-update --package --remove "$DPKG_MAINTSCRIPT_PACKAGE"
|
|
|
|
fi
|
2019-07-08 03:51:40 +07:00
|
|
|
|
|
|
|
true "INFO: debhelper beginning here."
|
|
|
|
|
|
|
|
#DEBHELPER#
|
|
|
|
|
|
|
|
true "INFO: Done with debhelper."
|
|
|
|
|
|
|
|
true "
|
|
|
|
#####################################################################
|
|
|
|
## INFO: END : $DPKG_MAINTSCRIPT_PACKAGE $DPKG_MAINTSCRIPT_NAME $@
|
|
|
|
#####################################################################
|
|
|
|
"
|
|
|
|
|
|
|
|
## Explicitly "exit 0", so eventually trapped errors can be ignored.
|
|
|
|
exit 0
|