I am new to puppet and still learning.
I have configured my master on ubantu and my agent is running on
Windows
My site.pp is as follows:
class test_class {
    file { "/tmp/testfile":
       ensure => present,
       mode   => 644,
       owner  => root,
       group  => root
    }
}

# tell puppet on which client to run the class
node pclient {
    include test_class
}


Error on my windows agent:

err: Failed to apply catalog: Parameter path failed: File paths must
be fully qu
alified, not 'tmp/testfile' at /etc/puppet/manifests/site.pp:7

Can anyone please guide me here?

Thanks in advance,
Rajeev

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Developers" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/puppet-dev?hl=en.

Reply via email to