From: Simo Sorce Date: Tue, 27 May 2014 19:28:30 +0000 (-0400) Subject: If krb is explicitly 'no' do not check for ipa X-Git-Tag: v0.2.5~12 X-Git-Url: http://git.cascardo.info/?p=cascardo%2Fipsilon.git;a=commitdiff_plain;h=ff115ef3155071dacf65c9f74192c4acb2b5989f;hp=0507eb3c0fbc5fe6231276660ac3be2f0cdf9abe If krb is explicitly 'no' do not check for ipa Signed-off-by: Simo Sorce --- diff --git a/ipsilon/helpers/ipa.py b/ipsilon/helpers/ipa.py index 722b404..54d5199 100755 --- a/ipsilon/helpers/ipa.py +++ b/ipsilon/helpers/ipa.py @@ -168,6 +168,8 @@ class Installer(object): def configure_server(self, opts): if opts['ipa'] != 'yes' and opts['ipa'] != 'auto': return + if opts['ipa'] != 'yes' and opts['krb'] == 'no': + return self.logger = logging.getLogger()