diff options
| author | Daniel Pittman <daniel@puppetlabs.com> | 2011-07-18 11:40:05 -0700 |
|---|---|---|
| committer | Daniel Pittman <daniel@puppetlabs.com> | 2011-07-20 14:50:07 -0700 |
| commit | c830ab01f31b3c6999953783a0ec1939bdbc25a9 (patch) | |
| tree | 06ab450fe66d2de7f7ec7f362238ac1ecf68b0ca /lib/puppet/application | |
| parent | cc311ad3dcb70547d7249e7aec9f545672c3e8e2 (diff) | |
| download | puppet-c830ab01f31b3c6999953783a0ec1939bdbc25a9.tar.gz puppet-c830ab01f31b3c6999953783a0ec1939bdbc25a9.tar.xz puppet-c830ab01f31b3c6999953783a0ec1939bdbc25a9.zip | |
(#6789) Port SSL::CertificateAuthority::Interface to a Face
The Puppet::SSL::CertificateAuthority::Interface class was an early prototype
heading toward building out a system like Faces. Now that we have done that,
this changeset ports the early code to a new face.
Reviewed-By: Pieter van de Bruggen <pieter@puppetlabs.com>
Diffstat (limited to 'lib/puppet/application')
| -rw-r--r-- | lib/puppet/application/ca.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/puppet/application/ca.rb b/lib/puppet/application/ca.rb new file mode 100644 index 000000000..d1ec2502e --- /dev/null +++ b/lib/puppet/application/ca.rb @@ -0,0 +1,5 @@ +require 'puppet/application/face_base' + +class Puppet::Application::Ca < Puppet::Application::FaceBase + run_mode :master +end |
