Hi Mat On Jan 9, 9:38 pm, "Mathew Binkley" <mathewbink...@gmail.com> wrote: > In site.pp: > > node 'foobar.vanderbilt.edu' { > include provision_usb_key > } > > In classes/provision_usb_key.pp: > > class provision_usb_key { > package { "plover": > ensure => latest > } > } > > [..] > > However, when I run puppetd on the client with debugging, the debugging > log shows nothing happening.
I suspect you're not importing your provision_usb_key manifest. include only evaluates classes, it doesn't tell Puppet to look for classes in external files (http://reductivelabs.com/trac/puppet/wiki/ LanguageTutorial). Add to the top of site.pp: import classes/provision_usb_key.pp or import classes/*.pp I hope this helps, Mark --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to puppet-users@googlegroups.com To unsubscribe from this group, send email to puppet-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en -~----------~----~----~----~------~----~------~--~---