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

