remove mpt-status everywhere
[mirror/dsa-puppet.git] / modules / hardware / manifests / raid / raidmpt.pp
1 # = Class: hardware::raid::raidmpt
2 #
3 # This class installs mpt-status and ensures the daemon is not running
4 #
5 # == Sample Usage:
6 #
7 #   include hardware::raid::raidmpt
8 #
9 class hardware::raid::raidmpt {
10         package { 'mpt-status':
11                 ensure => purged,
12         }
13
14         file { '/etc/default/mpt-statusd':
15                 ensure => absent,
16         }
17 }