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

#DEBHELPER#

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

if [ -f /usr/share/dbconfig-common/dpkg/postinst ]; then
	. /usr/share/dbconfig-common/dpkg/postinst
	dbc_dbfile_owner="shop:shop"
	dbc_go shopsystem "$@"
fi

adduser shop audio

exit 0