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

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

if [ -f /usr/share/dbconfig-common/dpkg/config ]; then
	dbc_dbtypes="sqlite3"
	dbc_basepath="/var/lib/shopsystem"
	dbc_dbname="shopsystem.db"
	. /usr/share/dbconfig-common/dpkg/config
	dbc_go shopsystem $@
fi

exit 0