diff options
author | Daniel Pittman <daniel@puppetlabs.com> | 2011-05-02 14:31:54 -0700 |
---|---|---|
committer | Daniel Pittman <daniel@puppetlabs.com> | 2011-05-02 15:34:19 -0700 |
commit | 86c6ec24f387fc70abc333fc4ac974b06b3ec80a (patch) | |
tree | f0ec5e0d43f115b16dab5ec2568a9369436c7425 /lib/puppet/face/certificate_request.rb | |
parent | c63e9c2394a30fe653908cd15967218d90fa34d6 (diff) | |
download | puppet-86c6ec24f387fc70abc333fc4ac974b06b3ec80a.tar.gz puppet-86c6ec24f387fc70abc333fc4ac974b06b3ec80a.tar.xz puppet-86c6ec24f387fc70abc333fc4ac974b06b3ec80a.zip |
maint: move the indirector face base out of puppet/face
We used to shove the base class Puppet::Face::Indirector next to the actual
faces; this made a bunch of things, including testing, confusing. Instead,
move it away into the indirector where it lives with the rest of the
indirector related things.
Reviewed-By: Nick Lewis <nick@puppetlabs.com>
Diffstat (limited to 'lib/puppet/face/certificate_request.rb')
-rw-r--r-- | lib/puppet/face/certificate_request.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/puppet/face/certificate_request.rb b/lib/puppet/face/certificate_request.rb index 0f7f72205..809758423 100644 --- a/lib/puppet/face/certificate_request.rb +++ b/lib/puppet/face/certificate_request.rb @@ -1,6 +1,6 @@ -require 'puppet/face/indirector' +require 'puppet/indirector/face' -Puppet::Face::Indirector.define(:certificate_request, '0.0.1') do +Puppet::Indirector::Face.define(:certificate_request, '0.0.1') do copyright "Puppet Labs", 2011 license "Apache 2 license; see COPYING" |