[Piuparts-commits] [SCM] piuparts git repository branch, develop, updated. 0.52-50-g1ca8406

Andreas Beckmann anbe at debian.org
Sat Jun 1 13:43:16 UTC 2013


The following commit has been merged in the develop branch:
commit 25a30e3cf249bf99500038941ee6bed28942da91
Author: Andreas Beckmann <anbe at debian.org>
Date:   Thu May 30 11:48:25 2013 +0200

    detect_piuparts_issues: failures to start a database server
    
    probably because there is another instance running already,
    so try again later
    
    Signed-off-by: Andreas Beckmann <anbe at debian.org>

diff --git a/debian/changelog b/debian/changelog
index 33a02dc..520aa8c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -29,6 +29,7 @@ piuparts (0.53) UNRELEASED; urgency=low
     - piuparts-slave: Add Depends: sudo.  (Closes: #710350)
   * New known problem: Packages with missing or incomplete .md5sums files.
   * piuparts-master.deb: Ship some piuparts.conf examples.
+  * detect_piuparts_issues: Detect problems starting MySQL or PostgreSQL.
 
   [ David Steele ]
   * Update python Requires to 2.7 (for argparse)
diff --git a/master-bin/detect_piuparts_issues.in b/master-bin/detect_piuparts_issues.in
index 442eb8c..b4f47f1 100755
--- a/master-bin/detect_piuparts_issues.in
+++ b/master-bin/detect_piuparts_issues.in
@@ -49,6 +49,9 @@ for SECTION in $SECTIONS ; do
 		# Python errors from maintainer scripts etc. would be indented by 2 spaces, so don't match here.
 		rgrep -l -e 'update-binfmts: warning: unable to close /proc/sys/fs/binfmt_misc/register: Invalid argument' $MASTER/$SECTION/$subdir >> $FILE
 		rgrep -l -e 'userdel: user .* is currently logged in' $MASTER/$SECTION/$subdir >> $FILE
+		rgrep -l -e 'invoke-rc.d: initscript mysql, action "start" failed.' $MASTER/$SECTION/$subdir >> $FILE
+		rgrep -l -e 'invoke-rc.d: initscript postgresql, action "start" failed.' $MASTER/$SECTION/$subdir >> $FILE
+		rgrep -l -e 'No database found online on port 5432' $MASTER/$SECTION/$subdir >> $FILE
 	done
 done
 if [ -s $FILE ] ; then

-- 
piuparts git repository



More information about the Piuparts-commits mailing list