Bug#702721: unblock: movabletype-opensource/5.1.4+dfsg-4
Package: release.debian.org
Severity: normal
User: release.debian.org@packages.debian.org
Usertags: unblock
Please unblock package movabletype-opensource which fixes a regression
in 5.1.4+dfsg-3; a user prompt about securing the system was lost:
#702065.
unblock movabletype-opensource/5.1.4+dfsg-4
diff -Nru movabletype-opensource-5.1.4+dfsg/debian/changelog movabletype-opensource-5.1.4+dfsg/debian/changelog
--- movabletype-opensource-5.1.4+dfsg/debian/changelog 2013-02-13 23:19:25.000000000 +0000
+++ movabletype-opensource-5.1.4+dfsg/debian/changelog 2013-03-10 17:14:30.000000000 +0000
@@ -1,3 +1,11 @@
+movabletype-opensource (5.1.4+dfsg-4) unstable; urgency=low
+
+ * Merge the preinst added in the previous release with the original
+ preinst, which prompted the user to configure the packages after
+ installation (closes: #702065)
+
+ -- Dominic Hargreaves <dom@earth.li> Sun, 10 Mar 2013 17:14:28 +0000
+
movabletype-opensource (5.1.4+dfsg-3) unstable; urgency=medium
* Add preinst to remove jquery symlink to avoid overwriting
diff -Nru movabletype-opensource-5.1.4+dfsg/debian/movabletype-opensource.preinst movabletype-opensource-5.1.4+dfsg/debian/movabletype-opensource.preinst
--- movabletype-opensource-5.1.4+dfsg/debian/movabletype-opensource.preinst 2013-02-13 20:45:55.000000000 +0000
+++ movabletype-opensource-5.1.4+dfsg/debian/movabletype-opensource.preinst 2013-03-10 16:57:40.000000000 +0000
@@ -16,6 +16,15 @@
case "$1" in
install|upgrade)
+ if [ -n "$2" ]; then
+ db_get movabletype-opensource/admin_account_warn || true
+ if [ "$RET" = "false" ]; then
+ echo "Aborting install";
+ db_fset movabletype-opensource/admin_account_warn seen false
+ exit 1
+ fi
+ fi
+
# Switch from symlink to directory
OLDLINK=/usr/share/movabletype/static/jquery
if [ -L $OLDLINK ]; then
diff -Nru movabletype-opensource-5.1.4+dfsg/debian/preinst movabletype-opensource-5.1.4+dfsg/debian/preinst
--- movabletype-opensource-5.1.4+dfsg/debian/preinst 2012-03-01 19:54:26.000000000 +0000
+++ movabletype-opensource-5.1.4+dfsg/debian/preinst 1970-01-01 01:00:00.000000000 +0100
@@ -1,34 +0,0 @@
-#!/bin/sh
-
-set -e
-
-. /usr/share/debconf/confmodule
-
-case "$1" in
- install|upgrade)
- if [ -n "$2" ]; then
- db_get movabletype-opensource/admin_account_warn || true
- if [ "$RET" = "false" ]; then
- echo "Aborting install";
- db_fset movabletype-opensource/admin_account_warn seen false
- exit 1
- fi
- fi
- ;;
-
- abort-upgrade)
- ;;
-
- *)
- echo "preinst called with unknown argument \`$1'" >&2
- exit 1
- ;;
-esac
-
-# dh_installdeb will replace this with shell code automatically
-# generated by other debhelper scripts.
-
-#DEBHELPER#
-
-exit 0
-
Reply to: