From 956aa6739978bea3c56f532d3dab15f075c46aa2 Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Mon, 25 Feb 2008 17:03:10 -0500 Subject: Add missing file --- certmaster/requester.py | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 certmaster/requester.py diff --git a/certmaster/requester.py b/certmaster/requester.py new file mode 100644 index 0000000..a67bee6 --- /dev/null +++ b/certmaster/requester.py @@ -0,0 +1,22 @@ +""" +certmaster requester -- asks for certs +any python app that wants to use certmaster can use this module + +Copyright 2008, Red Hat, Inc +Michael DeHaan + +This software may be freely redistributed under the terms of the GNU +general public license. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +""" + +import utils + +def request_cert(): + # this should be enough, but do we want to allow parameters + # for overriding the server and port from the config file? + # maybe not. -- mpd + utils.create_minion_keys() -- cgit