URL: https://github.com/freeipa/freeipa/pull/130 Author: ofayans Title: #130: Added --ip-address paramenter to client installation Action: opened
PR body: """ A record for client machine is only created during client installation if the '--ip-address' parameter is provided. Without A record in some cases replica connection check fails making it impossible to promote the client to replica without '--skip-conncheck' option """ To pull the PR as Git branch: git remote add ghfreeipa https://github.com/freeipa/freeipa git fetch ghfreeipa pull/130/head:pr130 git checkout pr130
From e82eaecccead01cbd16b75786d6bef0da02ef82e Mon Sep 17 00:00:00 2001 From: Oleg Fayans <ofay...@redhat.com> Date: Mon, 3 Oct 2016 14:24:41 +0200 Subject: [PATCH] Added --ip-address paramenter to client installation A record for client machine is only created during client installation if the '--ip-address' parameter is provided. Without A record in some cases replica connection check fails making it impossible to promote the client to replica without '--skip-conncheck' option --- ipatests/test_integration/tasks.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ipatests/test_integration/tasks.py b/ipatests/test_integration/tasks.py index 6c26626..e2625a4 100644 --- a/ipatests/test_integration/tasks.py +++ b/ipatests/test_integration/tasks.py @@ -421,6 +421,7 @@ def install_client(master, client, extra_args=()): '--realm', client.domain.realm, '-p', client.config.admin_name, '-w', client.config.admin_password, + '--ip-address', client.ip, '--server', master.hostname] + list(extra_args))
-- Manage your subscription for the Freeipa-devel mailing list: https://www.redhat.com/mailman/listinfo/freeipa-devel Contribute to FreeIPA: http://www.freeipa.org/page/Contribute/Code