From 289060dd98a3ed8e2a916ed25eaa1824c795e842 Mon Sep 17 00:00:00 2001 From: Martin Babinsky Date: Mar 01 2017 14:55:45 +0000 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 --- diff --git a/ipaserver/install/adtrust.py b/ipaserver/install/adtrust.py index 2eddf45..a8e4dc8 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)