From 289060dd98a3ed8e2a916ed25eaa1824c795e842 Mon Sep 17 00:00:00 2001 From: Martin Babinsky Date: Tue, 28 Feb 2017 13:58:36 +0100 Subject: 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 Reviewed-By: Jan Cholasta --- ipaserver/install/adtrust.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit