remove mpt-status everywhere
[mirror/dsa-puppet.git] / modules / hardware / manifests / raid / raidmpt.pp
index f371c72..44cb03e 100644 (file)
@@ -7,27 +7,11 @@
 #   include hardware::raid::raidmpt
 #
 class hardware::raid::raidmpt {
-       if $::mptraid {
-               package { 'mpt-status':
-                       ensure => installed
-               }
-
-               file { '/etc/default/mpt-statusd':
-                       content => "# This file is under puppet control\nRUN_DAEMON=no\n",
-                       notify  => Exec['mpt-statusd-stop'],
-               }
-
-               exec { 'mpt-statusd-stop':
-                       command => 'pidfile=/var/run/mpt-statusd.pid; ! [ -e "$pidfile" ] || /sbin/start-stop-daemon --oknodo --stop --signal TERM --quiet --pidfile "$pidfile"; rm -f "$pidfile";  pkill -INT  -P 1 -u 0 -f "/usr/bin/daemon /etc/init.d/mpt-statusd check_mpt"',
-                       refreshonly => true,
-               }
-       } else {
-               package { 'mpt-status':
-                       ensure => purged,
-               }
+       package { 'mpt-status':
+               ensure => purged,
+       }
 
-               file { '/etc/default/mpt-statusd':
-                       ensure => absent,
-               }
+       file { '/etc/default/mpt-statusd':
+               ensure => absent,
        }
 }