mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-22 21:22:40 +00:00
21 lines
384 B
Text
21 lines
384 B
Text
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
if test -f /usr/share/debconf/confmodule; then
|
||
|
. /usr/share/debconf/confmodule
|
||
|
fi
|
||
|
|
||
|
# Do dbconfig-common removal stuff
|
||
|
if test -f /usr/share/dbconfig-common/dpkg/postrm; then
|
||
|
. /usr/share/dbconfig-common/dpkg/postrm
|
||
|
dbc_go arsse "$@"
|
||
|
fi
|
||
|
|
||
|
# dh_installdeb will replace this with shell code automatically
|
||
|
# generated by other debhelper scripts.
|
||
|
|
||
|
#DEBHELPER#
|
||
|
|
||
|
exit 0
|