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