summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
Diffstat (limited to 'manifests')
-rw-r--r--manifests/init.pp7
1 files changed, 4 insertions, 3 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index 04ff701..549e9ce 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -1,7 +1,8 @@
class bitcoind(
- $daemon_args = hiera('bitcoind::daemon_args', '-daemon'),
- $rpcpassword = hiera('bitcoind::rpcpassword', ''),
- $ensure = hiera('bitcoind::ensure', 'running')
+ $daemon_args = hiera('bitcoind::daemon_args', '-daemon'),
+ $rpcpassword = hiera('bitcoind::rpcpassword', ''),
+ $ensure = hiera('bitcoind::ensure', 'running'),
+ $maxconnections = hiera('bitcoind::maxconnections', 25)
) {
case $rpcpassword {
'': { fail("You need to define etherpad database password! Please set bitcoind::rpcpassword in your config") }