From cfa23b1c2a421e795095c4b40c21e53d5090dce0 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Wed, 12 Jan 2011 10:33:36 -0500 Subject: Allow using Kerberos credentials with the 'connect' command Now that we can setup GSSAPI authenticated replication we are not tied to use the Directory Manager password to set up replication agreements. Fixes: https://fedorahosted.org/freeipa/ticket/644 --- install/tools/ipa-replica-manage | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'install/tools') diff --git a/install/tools/ipa-replica-manage b/install/tools/ipa-replica-manage index 0fd06fd2..80974545 100755 --- a/install/tools/ipa-replica-manage +++ b/install/tools/ipa-replica-manage @@ -368,7 +368,7 @@ def main(): if options.dirman_passwd: dirman_passwd = options.dirman_passwd else: - if not test_connection(realm, host) or args[0] == "connect": + if not test_connection(realm, host): dirman_passwd = getpass.getpass("Directory Manager password: ") options.dirman_passwd = dirman_passwd -- cgit