summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Babinsky <mbabinsk@redhat.com>2017-02-28 13:58:36 +0100
committerMartin Basti <mbasti@redhat.com>2017-03-01 15:55:45 +0100
commit289060dd98a3ed8e2a916ed25eaa1824c795e842 (patch)
treeae27da65d2af216c555311abb01a90ec95653c9f
parentef37c42ab9d3530dc78fa4b754cd11c585b69d77 (diff)
downloadfreeipa-289060dd98a3ed8e2a916ed25eaa1824c795e842.tar.gz
freeipa-289060dd98a3ed8e2a916ed25eaa1824c795e842.tar.xz
freeipa-289060dd98a3ed8e2a916ed25eaa1824c795e842.zip
check for installed dependencies when *not* in standalone mode
The condition that controls when to check for samba dependencies was misformulated. The check should be run when the installer is *not* run as standalone. In standalone mode the check is already made in different place so the original code triggered it twice. https://fedorahosted.org/freeipa/ticket/6630 Reviewed-By: Martin Basti <mbasti@redhat.com> Reviewed-By: Jan Cholasta <jcholast@redhat.com>
-rw-r--r--ipaserver/install/adtrust.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipaserver/install/adtrust.py b/ipaserver/install/adtrust.py
index 2eddf453a..a8e4dc859 100644
--- a/ipaserver/install/adtrust.py
+++ b/ipaserver/install/adtrust.py
@@ -348,7 +348,7 @@ def install_check(standalone, options, api):
global netbios_name
global reset_netbios_name
- if standalone:
+ if not standalone:
check_for_installed_deps()
realm_not_matching_domain = (api.env.domain.upper() != api.env.realm)