1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2025-01-18 17:10:33 +00:00
Arsse/dist/debian/arsse.postrm

21 lines
383 B
Text
Raw Normal View History

2021-07-07 08:22:19 -04:00
#!/bin/sh
set -e
if test -f /usr/share/debconf/confmodule; then
2021-07-07 15:24:45 -04:00
. /usr/share/debconf/confmodule
2021-07-07 08:22:19 -04:00
fi
2021-07-07 15:24:45 -04:00
# Set up dbconfig-common
2021-07-07 08:22:19 -04:00
if test -f /usr/share/dbconfig-common/dpkg/postrm; then
2021-07-07 15:24:45 -04:00
. /usr/share/dbconfig-common/dpkg/postrm
dbc_go arsse "$@"
2021-07-07 08:22:19 -04:00
fi
# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.
#DEBHELPER#
exit 0