diff options
author | intrigeri <intrigeri@boum.org> | 2012-04-11 15:09:42 +0200 |
---|---|---|
committer | intrigeri <intrigeri@boum.org> | 2012-04-11 15:09:42 +0200 |
commit | 1840bee0fc2162c63adcaec15e2c027f78020a9a (patch) | |
tree | 66852fabb64db3723d82afb0dec688d8425c478a | |
parent | 4d178902337cf6fe07734af744c052e451f1388c (diff) | |
download | puppet-tor-1840bee0fc2162c63adcaec15e2c027f78020a9a.tar.gz puppet-tor-1840bee0fc2162c63adcaec15e2c027f78020a9a.tar.bz2 |
Don't manage /etc/polipo: it's shipped by the polipo package.
-rw-r--r-- | manifests/polipo.pp | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/manifests/polipo.pp b/manifests/polipo.pp index 4a3d146..a23ff0b 100644 --- a/manifests/polipo.pp +++ b/manifests/polipo.pp @@ -9,21 +9,14 @@ class tor::polipo inherits tor { require => [ Package["polipo"], Service["tor"] ], } - file { "/etc/polipo": - ensure => directory, - owner => root, - group => root, - mode => 0755, - } - file { "/etc/polipo/config": ensure => present, owner => root, group => root, mode => 0644, source => "puppet:///modules/tor/polipo.conf", + require => Package["polipo"], notify => Service["polipo"], - require => File["/etc/polipo"], } # TODO: restore file to original state after the following bug is solved: |