diff options
author | mh <mh@immerda.ch> | 2011-10-28 16:36:00 +0200 |
---|---|---|
committer | mh <mh@immerda.ch> | 2011-10-28 16:36:00 +0200 |
commit | 5d2516c3a7a6b34399ff7b856fc9900ef1e41294 (patch) | |
tree | b753fd5a68cc4db91a4c4824582570bf58a42e11 /manifests | |
parent | d401332e0a038fe9fc6cbc44facbf4f38dc0663c (diff) | |
download | puppet-tor-5d2516c3a7a6b34399ff7b856fc9900ef1e41294.tar.gz puppet-tor-5d2516c3a7a6b34399ff7b856fc9900ef1e41294.tar.bz2 |
enable service on boot
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/init.pp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index 77896d6..8b78f65 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -5,11 +5,13 @@ class tor { service { "tor": ensure => running, + enable => true, require => Package['tor'], } service { "polipo": ensure => running, + enable => true, } file { "/etc/polipo/config": |