diff options
Diffstat (limited to 'manifests/init.pp')
-rw-r--r-- | manifests/init.pp | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index e1b1e72..954b804 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -10,14 +10,6 @@ class tor { service { "polipo": ensure => running, - require => Package["polipo"], - } - - file { "/etc/polipo": - ensure => directory, - owner => root, - group => root, - mode => 0755, } file { "/etc/polipo/config": @@ -26,8 +18,8 @@ class tor { 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: |