Bug 10893: fix location facet in UNIMARC
[koha_fer] / debian / koha-common.config
index 8d480ff..3f97df9 100755 (executable)
@@ -21,6 +21,26 @@ set -e
 
 . /usr/share/debconf/confmodule
 
-db_input high koha-common/3.2-3.4-upgrade-notice || true
-db_go
+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