[Pkg-mysql-commits] r1389 - trunk/debian

Norbert Tretkowski nobse at alioth.debian.org
Fri Jan 9 09:20:29 UTC 2009


tags 510875 pending
thanks

Author: nobse
Date: 2009-01-09 09:20:29 +0000 (Fri, 09 Jan 2009)
New Revision: 1389

Modified:
   trunk/debian/changelog
   trunk/debian/mysql-server-5.0.config
   trunk/debian/mysql-server-5.0.postinst
Log:
Ask for MySQL root password at high priority

Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog	2008-12-31 12:27:26 UTC (rev 1388)
+++ trunk/debian/changelog	2009-01-09 09:20:29 UTC (rev 1389)
@@ -1,3 +1,10 @@
+mysql-dfsg-5.0 (5.0.51a-21) testing-proposed-updates; urgency=low
+
+  * Ask for MySQL root password at high priority, because otherwise all
+    default installations will miss this question. (closes: #510875)
+
+ -- Norbert Tretkowski <nobse at debian.org>  Fri, 09 Jan 2009 10:18:49 +0100
+
 mysql-dfsg-5.0 (5.0.51a-20) testing-proposed-updates; urgency=low
 
   * New patch 60_fix_leap_seconds.dpatch from 5.0.74 to return leap second

Modified: trunk/debian/mysql-server-5.0.config
===================================================================
--- trunk/debian/mysql-server-5.0.config	2008-12-31 12:27:26 UTC (rev 1388)
+++ trunk/debian/mysql-server-5.0.config	2009-01-09 09:20:29 UTC (rev 1389)
@@ -19,7 +19,7 @@
 if [ "$1" = "configure" ] && [ -z "$2" ] || [ "$1" = "reconfigure" ]; then
   while :; do
     RET=""
-    db_input medium mysql-server/root_password || true
+    db_input high mysql-server/root_password || true
     db_go
     db_get mysql-server/root_password
     # if password isn't empty we ask for password verification
@@ -29,7 +29,7 @@
       break
     fi
     ROOT_PW="$RET"
-    db_input medium mysql-server/root_password_again || true
+    db_input high mysql-server/root_password_again || true
     db_go
     db_get mysql-server/root_password_again
     if [ "$RET" == "$ROOT_PW" ]; then

Modified: trunk/debian/mysql-server-5.0.postinst
===================================================================
--- trunk/debian/mysql-server-5.0.postinst	2008-12-31 12:27:26 UTC (rev 1388)
+++ trunk/debian/mysql-server-5.0.postinst	2009-01-09 09:20:29 UTC (rev 1389)
@@ -255,7 +255,7 @@
 # fails for any other reason, nothing happens.
 if [ "$1" = "configure" ]; then
 	if test_mysql_access; then
-		db_input medium mysql-server/root_password || true
+		db_input high mysql-server/root_password || true
 		db_go
 		db_get mysql-server/root_password && rootpw="$RET"
 




More information about the Pkg-mysql-commits mailing list