llowder
unread,Aug 22, 2012, 3:45:20 PM8/22/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to puppet...@googlegroups.com
I've got facter 1.6.4 + puppet 2.7.14 on an Ubuntu 10.04 (LTS, 64bit) machine.
This is my puppet master.
When I run puppet agent on this machine, I am getting some weird behavior. Namely, fact based variables are all showing up as empty strings.
When I run facter -p I see all the facts I expect to see, but when I have the following code in a class:
notify{"Testing.... the os is: '${::operatingsystem}'":}
during a run I get:
notice: Testing.... the os is: ''
On other nodes (and what I expect to see on my master) I get:
notice: Testing.... the os is: 'Ubuntu'
Any ideas?