diff options
author | mh <mh@immerda.ch> | 2010-08-07 02:12:12 +0200 |
---|---|---|
committer | mh <mh@immerda.ch> | 2010-08-07 02:12:12 +0200 |
commit | 6aee66b509319c0b42535a89dd64ad846f015c40 (patch) | |
tree | 71b5534d8985af2bdaef696a740c61a5af16f4dc /manifests | |
parent | bcb3ff88cddc6e531b4c03c754c312e7591f93fc (diff) | |
download | puppet-apt-6aee66b509319c0b42535a89dd64ad846f015c40.tar.gz puppet-apt-6aee66b509319c0b42535a89dd64ad846f015c40.tar.bz2 |
remove unnecessary fileserver variable (#2460)
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/init.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index c06c2ef..5ec798e 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -79,7 +79,7 @@ class apt { # http://backports.org/debian/archive.key # and is needed to bootstrap the backports trustpath file { "${apt_base_dir}/backports.org.key": - source => "puppet://$server/modules/apt/backports.org.key", + source => "puppet:///modules/apt/backports.org.key", mode => 0444, owner => root, group => root, } exec { "/usr/bin/apt-key add ${apt_base_dir}/backports.org.key && apt-get update": @@ -96,7 +96,7 @@ class apt { # http://backports.org/debian/archive.key # and is needed to bootstrap the backports trustpath file { "${apt_base_dir}/backports.org.key": - source => "puppet://$server/modules/apt/backports.org.key", + source => "puppet:///modules/apt/backports.org.key", mode => 0444, owner => root, group => root, } exec { "/usr/bin/apt-key add ${apt_base_dir}/backports.org.key && apt-get update": |