diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2011-07-14 15:37:00 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2011-07-14 15:37:00 -0300 |
commit | 38fb3669d0ecbfcd8438d2781869dc06a71a4541 (patch) | |
tree | 6cf7c22972441946a094302cdd5abf3aaab59e14 /manifests/subsystems/modprobe.pp | |
parent | 4eb8dfd32499625ceb60d06f3ebf236de727a3b0 (diff) | |
download | puppet-nodo-38fb3669d0ecbfcd8438d2781869dc06a71a4541.tar.gz puppet-nodo-38fb3669d0ecbfcd8438d2781869dc06a71a4541.tar.bz2 |
Updating to site-module convention
Diffstat (limited to 'manifests/subsystems/modprobe.pp')
-rw-r--r-- | manifests/subsystems/modprobe.pp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/manifests/subsystems/modprobe.pp b/manifests/subsystems/modprobe.pp index 176efb5..2b75225 100644 --- a/manifests/subsystems/modprobe.pp +++ b/manifests/subsystems/modprobe.pp @@ -7,7 +7,7 @@ class modprobe { group => "root", mode => 0644, ensure => present, - source => "puppet://$server/modules/nodo/etc/modprobe.d/blacklist.conf", + source => "puppet:///modules/nodo/etc/modprobe.d/blacklist.conf", } } default: { @@ -21,7 +21,7 @@ class modprobe { group => "root", mode => 0644, ensure => present, - source => "puppet://$server/modules/nodo/etc/modprobe.d/blacklist.conf", + source => "puppet:///modules/nodo/etc/modprobe.d/blacklist.conf", } } } @@ -33,7 +33,7 @@ class modprobe::laptop { group => "root", mode => 0644, ensure => present, - source => "puppet://$server/modules/nodo/etc/modules/laptop", + source => "puppet:///modules/nodo/etc/modules/laptop", } # see http://wiki.debian.org/DebianAcerOne#Cardreader @@ -42,6 +42,6 @@ class modprobe::laptop { group => "root", mode => 0644, ensure => present, - source => "puppet://$server/modules/nodo/etc/modprobe.d/aspire-blacklist-memstick.conf", + source => "puppet:///modules/nodo/etc/modprobe.d/aspire-blacklist-memstick.conf", } } |