mirror of
https://github.com/Kicksecure/security-misc.git
synced 2024-10-01 08:25:45 -04:00
47 lines
1.1 KiB
Plaintext
47 lines
1.1 KiB
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
## This file is part of Whonix.
|
||
|
## Copyright (C) 2012 - 2014 Patrick Schleizer <adrelanos@riseup.net>
|
||
|
## See the file COPYING for copying conditions.
|
||
|
|
||
|
if [ -f /usr/lib/pre.bsh ]; then
|
||
|
source /usr/lib/pre.bsh
|
||
|
fi
|
||
|
|
||
|
set -e
|
||
|
|
||
|
true "
|
||
|
#####################################################################
|
||
|
## INFO: BEGIN: $DPKG_MAINTSCRIPT_PACKAGE $DPKG_MAINTSCRIPT_NAME ${1+"$@"}
|
||
|
#####################################################################
|
||
|
"
|
||
|
|
||
|
case "$1" in
|
||
|
configure)
|
||
|
glib-compile-schemas /usr/share/glib-2.0/schemas
|
||
|
;;
|
||
|
|
||
|
abort-upgrade|abort-remove|abort-deconfigure)
|
||
|
;;
|
||
|
|
||
|
*)
|
||
|
echo "$DPKG_MAINTSCRIPT_NAME called with unknown argument \`$1'" >&2
|
||
|
exit 1
|
||
|
;;
|
||
|
esac
|
||
|
|
||
|
true "INFO: debhelper beginning here."
|
||
|
|
||
|
#DEBHELPER#
|
||
|
|
||
|
true "INFO: Done with debhelper."
|
||
|
|
||
|
true "
|
||
|
#####################################################################
|
||
|
## INFO: END : $DPKG_MAINTSCRIPT_PACKAGE $DPKG_MAINTSCRIPT_NAME ${1+"$@"}
|
||
|
#####################################################################
|
||
|
"
|
||
|
|
||
|
## Explicitly "exit 0", so eventually trapped errors can be ignored.
|
||
|
exit 0
|