Pushing changes as part of certmaster split
[certmaster.git] / scripts / certmaster-request
1 #!/usr/bin/python
2
3 """
4 Application to request a cert from a certmaster.
5 Takes no arguments, uses /etc/certmaster/minion.conf
6
7 Copyright 2008, Red Hat, Inc
8 Michael DeHaan <mdehaan@redhat.com>
9
10 This software may be freely redistributed under the terms of the GNU
11 general public license.
12
13 You should have received a copy of the GNU General Public License
14 along with this program; if not, write to the Free Software
15 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
16 """
17
18 import distutils.sysconfig
19
20 from certmaster import requester
21
22 if __name__ == "__main__":
23 requester.request_cert()