summaryrefslogtreecommitdiffstats
path: root/install/tools/ipa-cacert-manage
diff options
context:
space:
mode:
authorJan Cholasta <jcholast@redhat.com>2014-03-13 10:28:27 +0100
committerPetr Viktorin <pviktori@redhat.com>2014-07-30 16:04:21 +0200
commitba3c7b4a8956c8be696c664a6023b5184b3eba5a (patch)
treefb2a0542a89ea4e9e089918ba7cb3d38525c7b95 /install/tools/ipa-cacert-manage
parent2870db79135e75b66b288838b20d4b40f9007bb9 (diff)
downloadfreeipa-ba3c7b4a8956c8be696c664a6023b5184b3eba5a.tar.gz
freeipa-ba3c7b4a8956c8be696c664a6023b5184b3eba5a.tar.xz
freeipa-ba3c7b4a8956c8be696c664a6023b5184b3eba5a.zip
Add CA certificate management tool ipa-cacert-manage.
Part of https://fedorahosted.org/freeipa/ticket/3737 Reviewed-By: Rob Crittenden <rcritten@redhat.com>
Diffstat (limited to 'install/tools/ipa-cacert-manage')
-rw-r--r--install/tools/ipa-cacert-manage23
1 files changed, 23 insertions, 0 deletions
diff --git a/install/tools/ipa-cacert-manage b/install/tools/ipa-cacert-manage
new file mode 100644
index 000000000..5e969b7b8
--- /dev/null
+++ b/install/tools/ipa-cacert-manage
@@ -0,0 +1,23 @@
+#! /usr/bin/python2 -E
+# Authors: Jan Cholasta <jcholast@redhat.com>
+#
+# Copyright (C) 2014 Red Hat
+# see file 'COPYING' for use and warranty information
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+
+from ipaserver.install.ipa_cacert_manage import CACertManage
+
+CACertManage.run_cli()