aboutsummaryrefslogtreecommitdiff
path: root/manifests/init.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/init.pp')
-rw-r--r--manifests/init.pp6
1 files changed, 3 insertions, 3 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index efb74f3..54e612f 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -1,7 +1,7 @@
class pyroscope(
- $password = hiera('pyroscope::password', ''),
- $homedir = hiera('pyroscope::homedir', '/var/cache/torrent'),
- $groups = hiera('pyroscope::groups', [ 'incoming' ]),
+ $password = lookup('pyroscope::password', undef, undef, ''),
+ $homedir = lookup('pyroscope::homedir', undef, undef, '/var/cache/torrent'),
+ $groups = lookup('pyroscope::groups', undef, undef, [ 'incoming' ]),
) {
case $password {
'': { fail("You need to define torrent user password! Please set pyroscope::password in your config") }