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") }