aboutsummaryrefslogtreecommitdiff
path: root/manifests/subsystems/modprobe.pp
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2010-04-11 14:13:55 -0300
committerSilvio Rhatto <rhatto@riseup.net>2010-04-11 14:13:55 -0300
commit6e09c1c6f4c32cf186cec0157e9839d61b73e19f (patch)
treebc1f6413a4d63eb10589bf7d204ec202150df3bc /manifests/subsystems/modprobe.pp
parent4fa5c3e7cdbd7160d6a6f3abc8a2eeb09b639c40 (diff)
downloadpuppet-nodo-6e09c1c6f4c32cf186cec0157e9839d61b73e19f.tar.gz
puppet-nodo-6e09c1c6f4c32cf186cec0157e9839d61b73e19f.tar.bz2
Adding modprobe class and, new packages on utils::personal
Diffstat (limited to 'manifests/subsystems/modprobe.pp')
-rw-r--r--manifests/subsystems/modprobe.pp10
1 files changed, 10 insertions, 0 deletions
diff --git a/manifests/subsystems/modprobe.pp b/manifests/subsystems/modprobe.pp
new file mode 100644
index 0000000..6192f6d
--- /dev/null
+++ b/manifests/subsystems/modprobe.pp
@@ -0,0 +1,10 @@
+class modprobe {
+ # keep firewire disabled among other things
+ file { "/etc/modprobe.d/blacklist":
+ owner => "root",
+ group => "root",
+ mode => 0644,
+ ensure => present,
+ source => "puppet://$server/modules/nodo/etc/modprobe.d/blacklist",
+ }
+}