Remove smart monitoring for Equallogic RAID devices
authorQuentin Smith <quentin@mit.edu>
Sat, 14 Mar 2009 07:06:21 +0000 (03:06 -0400)
committerQuentin Smith <quentin@mit.edu>
Sat, 14 Mar 2009 07:06:21 +0000 (03:06 -0400)
svn path=/trunk/packages/xvm-munin-config/; revision=2247

debian/changelog
debian/xvm-munin-host-config.postinst

index 8deed5a..421aa5e 100644 (file)
@@ -1,3 +1,9 @@
+xvm-munin-config (0.0.7) unstable; urgency=low
+
+  * Remove smart monitoring for Equallogic RAID devices
+
+ -- Quentin Smith <quentin@mit.edu>  Sat, 14 Mar 2009 03:06:05 -0400
+
 xvm-munin-config (0.0.6) unstable; urgency=low
 
   * Add Provides and Conflicts lines to debian/control for
 xvm-munin-config (0.0.6) unstable; urgency=low
 
   * Add Provides and Conflicts lines to debian/control for
index f8e86d6..1f64371 100755 (executable)
@@ -36,6 +36,13 @@ EOF
         
         # Install munin plugins that are now configured
         munin-node-configure --suggest --shell | sh
         
         # Install munin plugins that are now configured
         munin-node-configure --suggest --shell | sh
+
+       (cd /etc/munin/plugins;
+           for i in smart_*; do
+               if smartctl -i /dev/${i#smart_} | grep Device | grep EQLOGIC; then
+                   rm -v $i;
+               fi
+           done)
         
         invoke-rc.d munin-node restart
     ;;
         
         invoke-rc.d munin-node restart
     ;;