> *err: Could not run Puppet configuration client: Parameter path failed:
> File paths must be fully qualified, not 'puppet:/myFileSrc**/<filename>'
> at /etc/puppet/manifests/<myfile>:158
The correct format is "puppet:///myFileSrc/<filename>". Or more general,
"puppet://<server>/<filemodule>/<filename>", but if you don't specify
any server, Puppet will use the same server it got the manifests from.
It looks like 0.24.8 treated "puppet:///foo" and "puppet:/foo" identically,
but the spec didn't really allow URLs on the latter form.
/Bellman
can you show us your manifest in question?
cheers epte
I was using Puppet 0.24.8 and now upgrade the puppet server and client both to 0.25.4 (on 1 machine i.e. server and client), but i am facing some problems. While testing, some of the configs which were/are running fine on older version generates error here;
for instance,
i have defined the FileSource path in '/etc/puppet/fileserver.conf'
[myFileSrc]
path /etc/puppet/modules/repo/files/
allow *.mydomain.com
but when i run puppet cleint it gives me following err;
err: Could not run Puppet configuration client: Parameter path failed: File paths must be fully qualified, not 'puppet:/myFileSrc/<filename>' at /etc/puppet/manifests/<myfile>:158
whats wrong here?
----------
Haris Farooque --
You received this message because you are subscribed to the Google Groups "Puppet Users" group.
To post to this group, send email to puppet...@googlegroups.com.
To unsubscribe from this group, send email to puppet-users...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en.
-- M. Haris Farooque
yes, I tried in the same way, here is my manifest;
err: Could not run Puppet configuration client: Parameter path failed: File paths must be fully qualified, not 'puppet:/SLES_SUDO/sudoers' at /etc/puppet/manifests/<myfile>:
you set sourcepath as the targeted path of the file, this won't work
and I assume it is also not what you like to do.
cheers pete