#!/bin/sh # koha-common.config - ensures that debconf stuff is all handled properly # # Copyright 2011 Catalyst IT, Ltd # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . set -e . /usr/share/debconf/confmodule CONFIGFILE=/etc/koha/koha-common.conf if [ -e $CONFIGFILE ]; then . $CONFIGFILE || true # Put the current values into debconf UPDATE="true" if [ "$AUTOMATIC_TRANSLATIONS_UPDATE" = "no" ] ; then UPDATE="false" fi db_set koha-common/automatically-update-translations "$UPDATE" else # True is the default db_set koha-common/automatically-update-translations true fi if dpkg --compare-versions "$2" lt-nl 3.4 ; then db_input high koha-common/3.2-3.4-upgrade-notice || true fi db_input medium koha-common/automatically-update-translations || true db_go || true