diff options
Diffstat (limited to 'manifests')
| -rw-r--r-- | manifests/laptop.pp | 1 | ||||
| -rw-r--r-- | manifests/subsystems/modprobe.pp | 10 | 
2 files changed, 11 insertions, 0 deletions
| diff --git a/manifests/laptop.pp b/manifests/laptop.pp index 1591aa7..9753869 100644 --- a/manifests/laptop.pp +++ b/manifests/laptop.pp @@ -1,5 +1,6 @@  class nodo::laptop inherits nodo::personal {    include utils::laptop +  include modprobe::laptop    # fstab    file { "/etc/fstab": diff --git a/manifests/subsystems/modprobe.pp b/manifests/subsystems/modprobe.pp index 6192f6d..cfd6be8 100644 --- a/manifests/subsystems/modprobe.pp +++ b/manifests/subsystems/modprobe.pp @@ -8,3 +8,13 @@ class modprobe {      source  => "puppet://$server/modules/nodo/etc/modprobe.d/blacklist",    }  } + +class modprobe::laptop { +  file { "/etc/modules": +    owner   => "root", +    group   => "root", +    mode    => 0644, +    ensure  => present, +    source  => "puppet://$server/modules/nodo/etc/modules/laptop", +  } +} | 
