hide tickets with selfservice priority indicating closure, RT#79444
[freeside.git] / debian / OLD / config
1 #!/bin/sh
2 # config script for freeside
3
4 set -e
5
6 # source debconf stuff
7 . /usr/share/debconf/confmodule
8
9 # source dbconfig-common shell library, and call the hook function
10 if [ -f /usr/share/dbconfig-common/dpkg/config ]; then
11    # we support mysql and pgsql
12    dbc_dbtypes="pgsql, mysql"
13
14    # source dbconfig-common stuff
15    . /usr/share/dbconfig-common/dpkg/config 
16    dbc_go freeside $@
17 fi
18
19 # ... rest of your code ...