← Back to team overview

launchpad-reviewers team mailing list archive

[Merge] lp:~wgrant/launchpad-buildd/log-kernel-version into lp:launchpad-buildd

 

William Grant has proposed merging lp:~wgrant/launchpad-buildd/log-kernel-version into lp:launchpad-buildd.

Requested reviews:
  Launchpad code reviewers (launchpad-reviewers)

For more details, see:
https://code.launchpad.net/~wgrant/launchpad-buildd/log-kernel-version/+merge/84431

Let's log `uname -a` too.
-- 
https://code.launchpad.net/~wgrant/launchpad-buildd/log-kernel-version/+merge/84431
Your team Launchpad code reviewers is requested to review the proposed merge of lp:~wgrant/launchpad-buildd/log-kernel-version into lp:launchpad-buildd.
=== modified file 'debian/changelog'
--- debian/changelog	2011-12-05 03:25:29 +0000
+++ debian/changelog	2011-12-05 04:35:03 +0000
@@ -15,7 +15,10 @@
   * While doing the above, s/Synching/Syncing/ 'cause it drives me nuts
   * Make slave-prep output versions of bzr, bzr-builder, python-lpbuildd
 
- -- Adam Conrad <adconrad@xxxxxxxxxx>  Sun, 04 Dec 2011 19:29:48 -0700
+  [ William Grant ]
+  * Log `uname -a` as well.
+
+ -- William Grant <wgrant@xxxxxxxxxx>  Mon, 05 Dec 2011 15:01:43 +1100
 
 launchpad-buildd (109) hardy; urgency=low
 

=== modified file 'slave-prep'
--- slave-prep	2011-12-05 03:25:29 +0000
+++ slave-prep	2011-12-05 04:35:03 +0000
@@ -9,12 +9,14 @@
 
 NTPDATE=ntpdate
 SUDO=sudo
+KERNEL=$(uname -a)
 LPBUILDD=$(dpkg-query -W launchpad-buildd 2>/dev/null | awk '{print $2}')
 PYBUILDD=$(dpkg-query -W python-lpbuildd 2>/dev/null | awk '{print $2}')
 BZRBUILDD=$(dpkg-query -W bzr-builder 2>/dev/null | awk '{print $2}')
 BZR=$(dpkg-query -W bzr 2>/dev/null | awk '{print $2}')
 
 echo "Forking launchpad-buildd slave process..."
+echo "Kernel version: $KERNEL"
 echo -n "Buildd toolchain package versions:"
 [ -z "$LPBUILDD" ] || echo -n " launchpad-buildd_$LPBUILDD"
 [ -z "$PYBUILDD" ] || echo -n " python-lpbuildd_$PYBUILDD"


Follow ups