diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2020-05-07 20:56:11 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2020-05-07 20:56:11 -0300 |
commit | 02366e517f397fb0727f224090ec2592572a105d (patch) | |
tree | 61d5b844251543405289bb913475156423933f0d | |
parent | 44780356fa5f043acf40e15ed357c5d29c37cff5 (diff) | |
download | puppet-bitcoind-master.tar.gz puppet-bitcoind-master.tar.bz2 |
-rw-r--r-- | manifests/init.pp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index 6a95f55..f957176 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -1,9 +1,9 @@ class bitcoind( - $daemon_args = hiera('bitcoind::daemon_args', '-daemon'), - $rpcuser = hiera('bitcoind::rpcuser', ''), - $rpcpassword = hiera('bitcoind::rpcpassword', ''), - $ensure = hiera('bitcoind::ensure', 'running'), - $maxconnections = hiera('bitcoind::maxconnections', 25) + $daemon_args = lookup('bitcoind::daemon_args', undef, undef, '-daemon'), + $rpcuser = lookup('bitcoind::rpcuser', undef, undef, ''), + $rpcpassword = lookup('bitcoind::rpcpassword', undef, undef, ''), + $ensure = lookup('bitcoind::ensure', undef, undef, 'running'), + $maxconnections = lookup('bitcoind::maxconnections', undef, undef, 25) ) { case $rpcuser { '': { fail("You need to define etherpad database password! Please set bitcoind::rpcuser in your config") } |