Tomas Cohen Arazi
624c953b35
This patch makes the install scripts take care of the new file and prompt for user confirmation on the apache file renaming step. Both prompt and the renaming actions depend on the fact that there are instances with their files missing the .conf appendix. Sponsored-by: Universidad Nacional de Cordoba Signed-off-by: Robin Sheat <robin@catalyst.net.nz> Signed-off-by: Galen Charlton <gmc@esilibrary.com>
48 lines
1.4 KiB
Bash
Executable file
48 lines
1.4 KiB
Bash
Executable file
#!/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 <http://www.gnu.org/licenses/>.
|
|
|
|
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_input high koha-common/rename-apache-vhost-files || true
|
|
|
|
db_go || true
|
|
|