From 25a6ddcce8e7b9effaf19431c421dc5b3497fa22 Mon Sep 17 00:00:00 2001 From: Stanislav Laznicka Date: Mon, 2 Jan 2017 13:22:07 +0100 Subject: Clarify meaning of --domain and --realm in installers Man pages need bigger overhaul. Take this as hot-fix for FAQ. https://fedorahosted.org/freeipa/ticket/6574 Reviewed-By: Fraser Tweedale --- ipalib/install/service.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'ipalib') diff --git a/ipalib/install/service.py b/ipalib/install/service.py index fc430fb18..73b8fd832 100644 --- a/ipalib/install/service.py +++ b/ipalib/install/service.py @@ -103,7 +103,8 @@ class ServiceInstallInterface(common.Installable, domain_name = knob( str, None, - description="domain name", + description="primary DNS domain of the IPA deployment " + "(not necessarily related to the current hostname)", cli_names='--domain', ) @@ -121,7 +122,8 @@ class ServiceInstallInterface(common.Installable, realm_name = knob( str, None, - description="realm name", + description="Kerberos realm name of the IPA deployment (typically" + "an upper-cased name of the primary DNS domain)", cli_names='--realm', ) -- cgit