I have installed puppet enterprise 3.7.2 on centos 7.Both Puppet master and agent is working .I can able to view the node from puppet enterprise console and attached screen shot.
I created the manifest file /etc/puppetlabs/puppet/manifests/node.pp with the following content on puppet server.
node 'puppet.client.net' {
file { '/tmp/hello':
content => "Hello, world\n",
}
}
After I executed the following command on master:
#puppet agent apply nodes.pp
And then Executed the following command on client node :
#puppet agent -t
Info: Retrieving pluginfacts
Info: Retrieving plugin
Info: Loading facts
Info: Caching catalog for puppet.client.net
Info: Applying configuration version '1424179235'
Notice: Finished catalog run in 2.12 seconds
Puppet node does not pick any changes from master.