From c830ab01f31b3c6999953783a0ec1939bdbc25a9 Mon Sep 17 00:00:00 2001 From: Daniel Pittman Date: Mon, 18 Jul 2011 11:40:05 -0700 Subject: (#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 --- lib/puppet/application/ca.rb | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 lib/puppet/application/ca.rb (limited to 'lib/puppet/application') 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 -- cgit