Koha/debian/koha-common.postinst
Lars Wirzenius f12ff9e0c6 Add support for a remote mysql server.
Signed-off-by: Galen Charlton <gmcharlt@gmail.com>
2010-05-26 16:30:25 +12:00

11 lines
141 B
Bash

#!/bin/sh
set -e
conf=/etc/mysql/koha-common.cnf
if [ ! -e "$conf" ] && [ ! -L "$conf" ]
then
ln -s debian.cnf "$conf"
fi
#DEBHELPER#