We need a boilerplate application file and class to expose a face on the command line; this adds that for the plugin face, to expose it to users.
Based on work by Luke Kaines <[email protected]> in https://github.com/lak/puppet/commit/a61cc770ca9b2cad744b5b21b9776a834d6ca895 Reviewed-By: Pieter van de Bruggen <[email protected]> --- lib/puppet/application/plugin.rb | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) create mode 100644 lib/puppet/application/plugin.rb diff --git a/lib/puppet/application/plugin.rb b/lib/puppet/application/plugin.rb new file mode 100644 index 0000000..2d0402e --- /dev/null +++ b/lib/puppet/application/plugin.rb @@ -0,0 +1,3 @@ +require 'puppet/application/face_base' +class Puppet::Application::Plugin < Puppet::Application::FaceBase +end -- 1.7.5 -- 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.
