From 5d5ec15ee5183b3ee5d67fef34877d55874e9e14 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Fri, 19 Nov 2010 11:22:10 -0500 Subject: Automatically disable pkinit when not supported --- install/tools/ipa-server-install | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/install/tools/ipa-server-install b/install/tools/ipa-server-install index 4340fbf3..aeb1cb71 100755 --- a/install/tools/ipa-server-install +++ b/install/tools/ipa-server-install @@ -176,6 +176,10 @@ def parse_options(): if (options.external_cert_file and not os.path.isabs(options.external_cert_file)): parser.error("--external-cert-file must use an absolute path") + #Automatically disable pkinit w/ dogtag until that is supported + if not options.pkinit_pkcs12 and not options.selfsign: + options.setup_pkinit = False + return safe_options, options def signal_handler(signum, frame): -- cgit