diff options
author | Petter Reinholdtsen <pere@hungry.com> | 2015-12-20 07:09:46 +0000 |
---|---|---|
committer | Petter Reinholdtsen <pere@hungry.com> | 2015-12-20 07:09:46 +0000 |
commit | 34fb6ae70737208905f08b1a8de8cec06d12d754 (patch) | |
tree | 08a6a9e420b7e4ca70be718ed4b7299f26af28ef | |
parent | 947b67d8711f9313ec66ae4c19e39e4f2b75b92b (diff) | |
download | sitesummary-34fb6ae70737208905f08b1a8de8cec06d12d754.tar.gz sitesummary-34fb6ae70737208905f08b1a8de8cec06d12d754.tar.bz2 sitesummary-34fb6ae70737208905f08b1a8de8cec06d12d754.tar.xz |
Collect output from hdparm -I for every disk device (Closes: #785285).
-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 |