Your message dated Sat, 24 May 2025 16:24:53 +0000
with message-id <[email protected]>
and subject line unblock grml-hwinfo
has caused the Debian Bug report #1106407,
regarding unblock: grml-hwinfo/0.18.8
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
1106407: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1106407
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: release.debian.org
Severity: normal
User: [email protected]
Usertags: unblock
X-Debbugs-Cc: [email protected]
Please unblock package grml-hwinfo
[ Reason ]
Better hardware info collection for disks reported by smartctl.
The patch is three lines and collects additional data that was
previously not collected.
[ Impact ]
Lack of this additional info.
[ Tests ]
Manual test was done.
[ Risks ]
It's three new lines in a bash program. There should be no risk.
[ Checklist ]
[x] all changes are documented in the d/changelog
[x] I reviewed all changes and I approve them
[x] attach debdiff against the package in testing
[ Other info ]
Nothing I'm aware of.
unblock grml-hwinfo/0.18.8
diff -Nru grml-hwinfo-0.18.7/debian/changelog
grml-hwinfo-0.18.8/debian/changelog
--- grml-hwinfo-0.18.7/debian/changelog 2025-03-24 11:15:32.000000000 +0100
+++ grml-hwinfo-0.18.8/debian/changelog 2025-05-14 13:17:01.000000000 +0200
@@ -1,3 +1,10 @@
+grml-hwinfo (0.18.8) unstable; urgency=medium
+
+ [ Christopher Bock ]
+ * [551f7c7] Collect output of smartctl in JSON format in "json/smartctl"
+
+ -- Michael Prokop <[email protected]> Wed, 14 May 2025 13:17:01 +0200
+
grml-hwinfo (0.18.7) unstable; urgency=medium
* [ae3a001] d/control: remove old Suggests: iproute alternative
diff -Nru grml-hwinfo-0.18.7/grml-hwinfo grml-hwinfo-0.18.8/grml-hwinfo
--- grml-hwinfo-0.18.7/grml-hwinfo 2025-01-07 15:14:00.000000000 +0100
+++ grml-hwinfo-0.18.8/grml-hwinfo 2025-05-14 13:17:01.000000000 +0200
@@ -540,6 +540,9 @@
echo -e "smartctl -a /dev/${disk}:\n" >> smartctl
smartctl -a "/dev/$disk" >> ./smartctl
echo -e "\n\n" >> ./smartctl
+ echo -e "[" >> ./json/smartctl
+ smartctl -x -j "/dev/$disk" >> ./json/smartctl
+ echo -e "]" >> ./json/smartctl
fi
if exectest hdparm ; then
--- End Message ---
--- Begin Message ---
Unblocked.
--- End Message ---