aboutsummaryrefslogtreecommitdiff
path: root/manifests/subsystem
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2013-06-13 20:38:47 -0300
committerSilvio Rhatto <rhatto@riseup.net>2013-06-13 20:38:47 -0300
commit3dc907900608f0178d02741adb4f2ede2de74270 (patch)
tree6607708805329d7d6443f25b653c83f35c03c74e /manifests/subsystem
parent274b4029582df262ce4bedcb6aa50831f8ef0a20 (diff)
downloadpuppet-nodo-3dc907900608f0178d02741adb4f2ede2de74270.tar.gz
puppet-nodo-3dc907900608f0178d02741adb4f2ede2de74270.tar.bz2
Adding nodo::subsystem::modprobe::gnokii
Diffstat (limited to 'manifests/subsystem')
-rw-r--r--manifests/subsystem/modprobe/gnokii.pp10
1 files changed, 10 insertions, 0 deletions
diff --git a/manifests/subsystem/modprobe/gnokii.pp b/manifests/subsystem/modprobe/gnokii.pp
new file mode 100644
index 0000000..decd1ed
--- /dev/null
+++ b/manifests/subsystem/modprobe/gnokii.pp
@@ -0,0 +1,10 @@
+# See http://wiki.gnokii.org/index.php/DKU2
+class nodo::subsystem::modprobe::gnokii {
+ file { '/etc/modprobe.d/phonet.conf':
+ ensure => present,
+ owner => root,
+ group => root,
+ mode => 0644,
+ content => "blacklist cdc_phonet\nblacklist phonet\n",
+ }
+}