On Mon, Oct 15, 2012 at 1:58 PM, Dan <[email protected]> wrote:

> #       source   => "puppet:///modules/ntp/files/${conf_file}",
>         source   => "/etc/puppet/modules/ntp/files/${conf_file}",
>

It's these lines. What you want to do is specify where the configuration
file exists on the puppet master using a syntax like this:

"puppet://<optional puppet master>/modules/<module name>/<configuration
file in files directory>",

Try: source => "puppet:///modules/ntp/${conf_file}",

Puppet assumes the files directory so it was looking for
/etc/puppet/modules/ntp/files/files/ntp.conf

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" 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-users?hl=en.

Reply via email to