puppet manifest does not seem to be replicated on client.
Hi, I am new to puppet...I have installed puppet on two machines 1. Master : hostname : master os :centos 6.5 puppet version: 3.7.4 (Puppet Enterprise 3.7.2)
2.client. hostname : newclient os :centos 6.5 puppet version: 3.7.4 (Puppet Enterprise 3.7.2)
Manifest details /etc/puppetlabs/puppet/manifests/site.pp
node "newclient" {
file { "/root/helloworld.txt":
ensure => file,
owner => "root",
group => "root",
mode => 0644
}
}
After creating this manifest I run the following command in client but nothing works out
sudo puppet agent --verbose --no-daemonize --onetime
Info: Retrieving pluginfacts
Info: Retrieving plugin
Info: Loading facts
Info: Caching catalog for newclient.localdomain
Info: Applying configuration version '1427054941'
Notice: Finished catalog run in 0.02 seconds
..Please Help