[25639] in Source-Commits
Re: r25132, r25139
daemon@ATHENA.MIT.EDU (Geoffrey Thomas)
Wed Jun 15 14:52:37 2011
Date: Wed, 15 Jun 2011 14:52:30 -0400 (EDT)
From: Geoffrey Thomas <geofft@MIT.EDU>
To: Jonathan D Reed <jdreed@mit.edu>
cc: source-commits@mit.edu
In-Reply-To: <201106151850.p5FIoseP005117@drugstore.mit.edu>
Message-ID: <alpine.DEB.2.00.1106151452220.27909@tyger.mit.edu>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; format=flowed; charset=US-ASCII
ACK
--
Geoffrey Thomas
geofft@mit.edu
On Mon, 13 Jun 2011, Jonathan D Reed wrote:
> Author: jdreed
> Date: 2011-06-13 15:24:13 -0400 (Mon, 13 Jun 2011)
> New Revision: 25132
>
> Modified:
> trunk/debathena/config/athinfod-cluster-config/debian/changelog
> trunk/debathena/config/athinfod-cluster-config/debian/control.in
> trunk/debathena/config/athinfod-cluster-config/debian/transform_athinfo.defs.debathena
> Log:
> In athinfod-cluster-config:
> * Add support for dmesg and /var/log/messages (Trac #879)
> * Use new cluster test and depend on relevant athinfod version (Trac
> #906)
>
>
> Modified: trunk/debathena/config/athinfod-cluster-config/debian/changelog
> ===================================================================
> --- trunk/debathena/config/athinfod-cluster-config/debian/changelog 2011-05-23 23:50:49 UTC (rev 25131)
> +++ trunk/debathena/config/athinfod-cluster-config/debian/changelog 2011-06-13 19:24:13 UTC (rev 25132)
> @@ -1,3 +1,11 @@
> +debathena-athinfod-cluster-config (1.2) unstable; urgency=low
> +
> + * Add support for dmesg and /var/log/messages (Trac #879)
> + * Use new cluster test and depend on relevant athinfod version (Trac
> + #906)
> +
> + -- Jonathan Reed <jdreed@mit.edu> Mon, 13 Jun 2011 15:23:32 -0400
> +
> debathena-athinfod-cluster-config (1.1) unstable; urgency=low
>
> * Add lsusb and usb-hid queries, and Python support for the latter
>
> Modified: trunk/debathena/config/athinfod-cluster-config/debian/control.in
> ===================================================================
> --- trunk/debathena/config/athinfod-cluster-config/debian/control.in 2011-05-23 23:50:49 UTC (rev 25131)
> +++ trunk/debathena/config/athinfod-cluster-config/debian/control.in 2011-06-13 19:24:13 UTC (rev 25132)
> @@ -7,7 +7,7 @@
>
> Package: debathena-athinfod-cluster-config
> Architecture: all
> -Depends: debathena-athinfod, debathena-machtype, python-usb, ${misc:Depends}
> +Depends: debathena-athinfod (>= 10.0.0-0debathena16~), debathena-machtype, python-usb, ${misc:Depends}
> Provides: ${diverted-files}
> Conflicts: ${diverted-files}
> Description: Athinfod configuration for Debathena
>
> Modified: trunk/debathena/config/athinfod-cluster-config/debian/transform_athinfo.defs.debathena
> ===================================================================
> --- trunk/debathena/config/athinfod-cluster-config/debian/transform_athinfo.defs.debathena 2011-05-23 23:50:49 UTC (rev 25131)
> +++ trunk/debathena/config/athinfod-cluster-config/debian/transform_athinfo.defs.debathena 2011-06-13 19:24:13 UTC (rev 25132)
> @@ -4,12 +4,14 @@
> print <<EOF;
>
> # Added by debathena-athinfod-cluster-config
> -update.log machtype -v -L | grep -q "debathena-cluster" && test -r /var/log/athena-update && cat /var/log/athena-update
> -update-status machtype -v -L | grep -q "debathena-cluster" && test -r /var/lib/athena-update-status && cat /var/lib/athena-update-status
> +update.log /usr/lib/athinfod/is_cluster && test -r /var/log/athena-update && cat /var/log/athena-update
> +update-status /usr/lib/athinfod/is_cluster && test -r /var/lib/athena-update-status && cat /var/lib/athena-update-status
> in-use machtype -L | grep -q "debathena-cluster" && (test `pgrep -c larvnet-wrapper` -gt 0 && echo "yes" || echo "no") || echo "n/a"
> -update-schedule machtype -v -L | grep -q "debathena-cluster" && test -r /etc/cron.d/debathena-auto-update && cat /etc/cron.d/debathena-auto-update
> -install.log machtype -v -L | grep -q "debathena-cluster" && test -r /var/log/athena-install.log && cat /var/log/athena-install.log
> +update-schedule /usr/lib/athinfod/is_cluster && test -r /etc/cron.d/debathena-auto-update && cat /etc/cron.d/debathena-auto-update
> +install.log /usr/lib/athinfod/is_cluster && test -r /var/log/athena-install.log && cat /var/log/athena-install.log
> usb-hid /usr/share/debathena-athinfod-cluster-config/usb-hid.py
> -lsusb machtype -v -L | grep -q "debathena-cluster" && lsusb
> +lsusb /usr/lib/athinfod/is_cluster && lsusb
> +dmesg /usr/lib/athinfod/is_cluster && dmesg
> +messages /usr/lib/athinfod/is_cluster && cat /var/log/messages
> EOF
> exit 0;
>
>
On Wed, 15 Jun 2011, Jonathan D Reed wrote:
> Author: jdreed
> Date: 2011-06-15 14:50:54 -0400 (Wed, 15 Jun 2011)
> New Revision: 25139
>
> Modified:
> trunk/debathena/config/athinfod-cluster-config/debian/changelog
> trunk/debathena/config/athinfod-cluster-config/debian/transform_athinfo.defs.debathena
> Log:
> In athinfod-cluster-config:
> * Drop /var/log/messages, because we can't read it (Leave dmesg for now,
> though Oneiric might screw us over)
>
>
> Modified: trunk/debathena/config/athinfod-cluster-config/debian/changelog
> ===================================================================
> --- trunk/debathena/config/athinfod-cluster-config/debian/changelog 2011-06-15 13:53:26 UTC (rev 25138)
> +++ trunk/debathena/config/athinfod-cluster-config/debian/changelog 2011-06-15 18:50:54 UTC (rev 25139)
> @@ -1,3 +1,10 @@
> +debathena-athinfod-cluster-config (1.3) unstable; urgency=low
> +
> + * Drop /var/log/messages, because we can't read it (Leave dmesg for now,
> + though Oneiric might screw us over)
> +
> + -- Jonathan Reed <jdreed@mit.edu> Wed, 15 Jun 2011 14:50:19 -0400
> +
> debathena-athinfod-cluster-config (1.2) unstable; urgency=low
>
> * Add support for dmesg and /var/log/messages (Trac #879)
>
> Modified: trunk/debathena/config/athinfod-cluster-config/debian/transform_athinfo.defs.debathena
> ===================================================================
> --- trunk/debathena/config/athinfod-cluster-config/debian/transform_athinfo.defs.debathena 2011-06-15 13:53:26 UTC (rev 25138)
> +++ trunk/debathena/config/athinfod-cluster-config/debian/transform_athinfo.defs.debathena 2011-06-15 18:50:54 UTC (rev 25139)
> @@ -12,6 +12,5 @@
> usb-hid /usr/share/debathena-athinfod-cluster-config/usb-hid.py
> lsusb /usr/lib/athinfod/is_cluster && lsusb
> dmesg /usr/lib/athinfod/is_cluster && dmesg
> -messages /usr/lib/athinfod/is_cluster && cat /var/log/messages
> EOF
> exit 0;
>
>