diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2016-03-05 18:49:36 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2016-03-05 18:49:36 -0300 |
commit | e48f6804d5031f882d34d3a3ec24caaae60b6145 (patch) | |
tree | a4eea793fa45d8a39f344c0f8636e893826353a6 /manifests/role | |
parent | 4ac9cc3ee59315d976e5dac47bf5efa251a1fd9a (diff) | |
download | puppet-nodo-e48f6804d5031f882d34d3a3ec24caaae60b6145.tar.gz puppet-nodo-e48f6804d5031f882d34d3a3ec24caaae60b6145.tar.bz2 |
Use hiera for mumble config
Diffstat (limited to 'manifests/role')
-rw-r--r-- | manifests/role/mumble.pp | 5 | ||||
-rw-r--r-- | manifests/role/nas.pp | 2 | ||||
-rw-r--r-- | manifests/role/proxy.pp | 2 |
3 files changed, 6 insertions, 3 deletions
diff --git a/manifests/role/mumble.pp b/manifests/role/mumble.pp index 42a2c33..b24b2c1 100644 --- a/manifests/role/mumble.pp +++ b/manifests/role/mumble.pp @@ -1,5 +1,8 @@ class nodo::role::mumble inherits nodo::base::virtual { - include mumble::ssl + class { 'mumble::ssl': + config_content => hiera('mumble::config_content'), + } + include mumble::munin $ecdhforce = hiera('nodo::role::mumble::ecdhforce', false) diff --git a/manifests/role/nas.pp b/manifests/role/nas.pp index 08b0ac7..9ac0693 100644 --- a/manifests/role/nas.pp +++ b/manifests/role/nas.pp @@ -2,7 +2,7 @@ class nodo::role::nas( $virtual = false, ) { # Munin configuration - $munin = hiera('nodo::host::use_munin', True) + $munin = hiera('nodo::host::use_munin', false) # Minimal utilities include nodo::utils::network::minimal diff --git a/manifests/role/proxy.pp b/manifests/role/proxy.pp index 2e3536f..cf05c23 100644 --- a/manifests/role/proxy.pp +++ b/manifests/role/proxy.pp @@ -1,7 +1,7 @@ class nodo::role::proxy inherits nodo::base::virtual { class { 'nginx': } - $munin = hiera('nodo::host::use_munin', True) + $munin = hiera('nodo::host::use_munin', false) if $munin == true { # Graph nginx munin::plugin { [ 'nginx_request', 'nginx_status' ]: |