Hello Puppet List,

I'm writing a module that should take an optional value and I want to
get it (amongst other places) from Hiera.

$repository = $::java_repository ? {
  undef   => hiera('java_repository')
  default => $::java_repository,
}

But this fails because Hiera raises an error if it can't find a value.

I later want to do something like this:

if $repository {
  Class[$repository] -> Class['java::install']
}

I tried following the examples from the recent blog series about
module design but I'm still very much learning so this might not even
be the best way to go about this. Any hints would be appreciated.

Cheers,
Lars

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To post to this group, send email to puppet-users@googlegroups.com.
To unsubscribe from this group, send email to 
puppet-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/puppet-users?hl=en.

Reply via email to