> Nearly everything is in the title.
>
> When I manually run a puppet agent --test on a host (let's say "host1") that
> export @@something, I can get "something" on another host (let's say host2)
> and I'm happy.
>
> Later, when the daemon on host1 runs, it still exports @@something but
> custom facts are empty instead of having their value.
>
> What am I missing ?

Do you mean your custom facts don't appear in your manifest code? Or
in PuppetDB?

Sometimes this could indicate a misconfigured routes.yaml. It should
look something like this:

root@puppetdb1:~# cat /etc/puppet/routes.yaml
---
master:
  facts:
    terminus: puppetdb
    cache: yaml

This file belongs on your puppet master host, that is configured to
connect to PuppetDB. If you change it, your puppet master requires a
restart.

Without this configuration, you may find PuppetDB is being used for
facts instead of using the received facts from an agent. That is, it
might get populated the first time, but subsequent runs will only
retrieve facts from the first run from PuppetDB and only those will
appear in your manifest scope.

ken.

-- 
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/CAE4bNTkPnEp4M%2BYQtSQki3ewHv5nMuBAq2%3D_%3DEmrLUWuSPuHVw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to