diff options
-rw-r--r-- | collect.d/system | 5 | ||||
-rw-r--r-- | debian/changelog | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/collect.d/system b/collect.d/system index c5be33d..c741cda 100644 --- a/collect.d/system +++ b/collect.d/system @@ -42,6 +42,11 @@ if [ -f /proc/mdstat ] ; then cat /proc/mdstat > mdstat fi +# Collect hard disk information +for diskdev in $(grep 'sd.$' /proc/partitions|awk '{print $4}'|sort); do + hdparm -I /dev/$diskdev || true +done > hdparm-I + # Collect mount points, for nagios configuration cp /etc/fstab fstab cat /proc/mounts > procmounts diff --git a/debian/changelog b/debian/changelog index 3724a87..d3383b3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -4,6 +4,9 @@ sitesummary (0.1.18) UNRELEASED; urgency=low * Fix hanging postinst script (Closes: #785214). * Fix dangling symlink in apache config after removal (Closes: #785215). + [ Petter Reinholdtsen ] + * Collect output from hdparm -I for every disk device (Closes: #785285). + -- Dominik George <nik@naturalnet.de> Wed, 13 May 2015 16:36:20 +0200 sitesummary (0.1.17) unstable; urgency=high |