BZ5719: unimarc plugin fixes
[koha.git] / debian / koha-common.postinst
1 #!/bin/sh
2
3 set -e
4
5 . /usr/share/debconf/confmodule
6
7 conf=/etc/mysql/koha-common.cnf
8 if [ ! -e "$conf" ] && [ ! -L "$conf" ]
9 then
10     ln -s debian.cnf "$conf"
11 fi
12
13 #DEBHELPER#
14
15 koha-upgrade-schema $(koha-list)
16
17 db_stop
18
19 exit 0