2019-07-07 16:51:40 -04:00
|
|
|
#!/bin/bash
|
|
|
|
|
2024-05-10 23:18:36 -04:00
|
|
|
## Copyright (C) 2012 - 2024 ENCRYPTED SUPPORT LP <adrelanos@whonix.org>
|
2019-07-07 16:51:40 -04:00
|
|
|
## See the file COPYING for copying conditions.
|
|
|
|
|
2021-08-03 12:48:57 -04:00
|
|
|
if [ -f /usr/libexec/helper-scripts/pre.bsh ]; then
|
|
|
|
source /usr/libexec/helper-scripts/pre.bsh
|
2019-07-07 16:51:40 -04:00
|
|
|
fi
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
true "
|
|
|
|
#####################################################################
|
|
|
|
## INFO: BEGIN: $DPKG_MAINTSCRIPT_PACKAGE $DPKG_MAINTSCRIPT_NAME $@
|
|
|
|
#####################################################################
|
|
|
|
"
|
|
|
|
|
2019-07-13 07:41:37 -04:00
|
|
|
if [ "$1" = remove ]; then
|
|
|
|
pam-auth-update --package --remove "$DPKG_MAINTSCRIPT_PACKAGE"
|
|
|
|
fi
|
2019-07-07 16:51:40 -04: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
|