Hi Please read the basic documentation on modules: http://docs.puppetlabs.com/guides/modules.html
It states that a module should have the following structure: MODULE_PATH/ └──downcased_module_name/ ├──files/ ├──manifests/ │ ├──init.pp │ └──foo.pp ├──lib/ │ ├──puppet/ │ │ ├──parser/ │ │ │ └──functions/ │ │ ├──provider/ │ │ └──type/ │ └──facter/ ├──templates/ ├──tests │ ├──init.pp │ └──foo.pp └──README Notice the files-directory, this is were you put all files that belongs to this module that you want to pull with the file-resourcetype. So your source in your ssh-module should be: source => puppet:///modules/ssh/whatever_file_you want. Regards Nicolai -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To view this discussion on the web visit https://groups.google.com/d/msg/puppet-users/-/WIF8Yvp8DAAJ. 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.
