diff options
author | varac <varacanero@zeromail.org> | 2013-03-10 15:47:31 +0100 |
---|---|---|
committer | varac <varacanero@zeromail.org> | 2013-03-10 15:47:31 +0100 |
commit | 113b44d8ee21e4d9b7a678005f2536f2046ef1b2 (patch) | |
tree | a1101c4c7d7302a41ac7d7517b7f01796e9d0e3f /puppet/manifests | |
parent | 82d894e5ac82752e88b193acd015e4544141eae1 (diff) |
use parameterized couchdb class instead of calling site_couchdb::bigcouch directly
Diffstat (limited to 'puppet/manifests')
-rw-r--r-- | puppet/manifests/site.pp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/puppet/manifests/site.pp b/puppet/manifests/site.pp index 193a93e1..f55e6925 100644 --- a/puppet/manifests/site.pp +++ b/puppet/manifests/site.pp @@ -21,7 +21,9 @@ if 'openvpn' in $services { } if 'couchdb' in $services { - include site_couchdb::bigcouch + class {'site_couchdb': + bigcouch => true + } } if 'webapp' in $services { |