summaryrefslogtreecommitdiffstats
path: root/debian/shopsystem.prerm
blob: 5a1612bfab56d8352998a9f9606d1e75a14bd78d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh
set -e

if [ -f /usr/share/debconf/confmodule ]; then
	. /usr/share/debconf/confmodule
fi

if [ -f /usr/share/dbconfig-common/dpkg/prerm ]; then
	. /usr/share/dbconfig-common/dpkg/prerm
	dbc_go shopsystem $@
fi

deluser shop audio || true

#DEBHELPER#

exit 0