aboutsummaryrefslogtreecommitdiff
path: root/manifests/subsystem/modprobe.pp
blob: be6ec423219cd27461a3e4ae41b39c61f163036f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
class nodo::subsystem::modprobe {
  # Keep firewire disabled among other things
  case $lsbdistcodename {
    'lenny': {
      file { "/etc/modprobe.d/blacklist":
        owner   => "root",
        group   => "root",
        mode    => 0644,
        ensure  => present,
        source  => "puppet:///modules/nodo/etc/modprobe.d/blacklist.conf",
      }
    }
    default: {
      # Upgrade from lenny
      file { "/etc/modprobe.d/blacklist":
        ensure => absent,
      }

      file { "/etc/modprobe.d/blacklist.conf":
        owner   => "root",
        group   => "root",
        mode    => 0644,
        ensure  => present,
        source  => "puppet:///modules/nodo/etc/modprobe.d/blacklist.conf",
      }
    }
  }
}