diff options
author | mh <mh@immerda.ch> | 2013-01-02 13:54:57 +0100 |
---|---|---|
committer | mh <mh@immerda.ch> | 2013-01-02 13:54:57 +0100 |
commit | 225adb9f30bff4064e3a166498f147bfd9a9f6eb (patch) | |
tree | 6836f4ddde3ea63be929048896ef6afd5568defc /README | |
parent | 3fb09572cbbef20a72feb3e3a50711ba7eba1cea (diff) | |
download | puppet-tor-225adb9f30bff4064e3a166498f147bfd9a9f6eb.tar.gz puppet-tor-225adb9f30bff4064e3a166498f147bfd9a9f6eb.tar.bz2 |
refactor daemon and main class for better design
By extracting the resources to their own class we can avoid a bug
in puppet that makes it hard to deal with inherited parametrized
classes.
Diffstat (limited to 'README')
-rw-r--r-- | README | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -81,14 +81,12 @@ config, for example the following will use syslog: } If you want to set specific options for the tor class, -you need to define it before tor::daemon in your manifests, +you may pass them directly to the tor::daemon in your manifests, e.g.: - class { '::tor': - use_munin => true, - } class { '::tor::daemon': - automap_hosts_on_resolve => 1, + use_munin => true, + automap_hosts_on_resolve => 1, } Configuring socks |