Helmut Schneider wrote:

> common.yaml:
> variable:
>   baculaWorkingDirectory: '/var/lib/bacula'
> 
> variables:
>   baculaWorkingDirectory: '/var/lib/bacula'
> 
> config.pp:
> [...]
>   $variables = lookup({
>     "name" => "variables",
>     "merge" => {
>       "strategy" => "deep",
>       "knockout_prefix" => "--",
> #      "sort_merged_arrays" => true,
>     },
>     "default_value" => [],
>   })
> [...]
> 
> bacula.pp:
> class bacula inherits config {
>   $test1 = lookup('variable.baculaWorkingDirectory')
>   #$test2 = lookup('variables.baculaWorkingDirectory')
>   $baculaWorkingDirectory = $variables['baculaWorkingDirectory']
>   notify {"Test": message => $test1}
>   #notify {"Test": message => $test2}
>   notify {"baculaWorkingDirectory": message =>
> $baculaWorkingDirectory} }
> 
> Notice: /var/lib/bacula
> Notice: /Stage[main]/Bacula/Notify[Test]/message: defined 'message' as
> '/var/lib/bacula'
> Debug: /Stage[main]/Bacula/Notify[Test]: The container Class[Bacula]
> will propagate my refresh event
> Notice: /var/db/bacula
> Notice: /Stage[main]/Bacula/Notify[baculaWorkingDirectory]/message:
> defined 'message' as '/var/db/bacula'
> 
> If I uncomment #test2:
> 
> Error: Could not retrieve catalog from remote server: Error 500 on
> SERVER: Server Error: Function lookup() did not find a value for the
> name 'variables.baculaWorkingDirectory' on node
> bsdhelmut1164.charlieroot.de
> 
> What am I missing?

I don't get it:

$test3 = lookup('variables')
notify {"Test3": message => $test3}

Notice: /Stage[main]/Bacula/Notify[variables]/message: defined
'message' as '{"debug"=>0, "baculaConfPath"=>"/etc/bacula",
"baculaClientService"=>"bacula-fd",
"baculaDirectorService"=>"bacula-dir",
"baculaStorageService"=>"bacula-sd",
"baculaClientPackage"=>"bacula-client",
"baculaServerPackage"=>"bacula-server",
"baculaWorkingDirectory"=>"/var/lib/bacula", "baculaGID"=>"bacula",
"baculaUID"=>"bacula", "apachePackage"=>"apache2",
"apacheService"=>"apache2", "fail2banConfPath"=>"/etc/fail2ban",
"fail2banPackage"=>"fail2ban", "fail2banService"=>"fail2ban",
"logrotatePackage"=>"logrotate", "openvpnPackage"=>"openvpn",
"openvpnService"=>"openvpn", "openvpnConfPath"=>"/etc/openvpn",
"perlDbiPackage"=>"libdbi-perl",
"perlDbdMysqlPackage"=>"libdbd-mysql-perl", "puppetService"=>"puppet",
"rootUID"=>"root", "rootGID"=>"root", "rsyslogPackage"=>"rsyslog",
"rsyslogService"=>"rsyslog", "snmpdConfPath"=>"/etc/snmp",
"snmpdService"=>"snmpd", "spamassassinPackage"=>"spamassassin",
"syslogUID"=>"syslog", "syslogGID"=>"adm", "ufwConfPath"=>"/etc/ufw",
"ufwPackage"=>"ufw", "ufwService"=>"ufw", "postfixPackage"=>"postfix",
"postfixService"=>"postfix", "postfixConfPath"=>"/etc/postfix",
"amavisdPackage"=>"amavisd-new", "arjPackage"=>"arj",
"p7zipPackage"=>"p7zip-full", "amavisdConfPath"=>"/etc/amavis/conf.d",
"amavisdService"=>"amavis", "appEtcConfPath"=>"/etc",
"bindConfPath"=>"/etc/bind", "bindPackage"=>"bind9",
"bindService"=>"bind9", "clamavConfPath"=>"/etc/clamav",
"clamavPackage"=>"clamav-daemon",
"clamavService"=>"clamav-daemon-chroot",
"clamavServiceOrg"=>"clamav-daemon", "cronConfPath"=>"/etc/cron.d",
"defaultsEtcConfPath"=>"/etc/default",
"freshclamService"=>"clamav-freshclam-chroot",
"freshclamServiceOrg"=>"clamav-freshclam", "initPath"=>"/etc/init.d",
"logrotateConfPath"=>"/etc/logrotate.d",
"perlSitePath"=>"/usr/local/lib/site_perl",
"postfixLdapSearchPackages"=>["libconfig-inifiles-perl",
"libmime-lite-perl", "libnet-ldap-perl"],
"rsyslogConfPath"=>"/etc/rsyslog.d", "sasl2Service"=>"saslauthd",
"snmpdPackage"=>"snmpd",
"spamassassinConfPath"=>"/etc/mail/spamassassin",
"sudoersConfPath"=>"/etc/sudoers.d"}'

$test2 = lookup('variables.debug')
notify {"Test2": message => $test2}

Error: Could not retrieve catalog from remote server: Error 500 on
SERVER: Server Error: Function lookup() did not find a value for the
name 'variables.debug' on node h2786452

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/xn0ldruw91k4ksb000%40news.gmane.org.
For more options, visit https://groups.google.com/d/optout.

Reply via email to