summaryrefslogtreecommitdiffstats
path: root/ipalib
diff options
context:
space:
mode:
authorStanislav Laznicka <slaznick@redhat.com>2017-01-02 13:22:07 +0100
committerMartin Basti <mbasti@redhat.com>2017-01-05 09:47:25 +0100
commit25a6ddcce8e7b9effaf19431c421dc5b3497fa22 (patch)
treeb8bd2140c9922e5f70664b83160e5ef5392155e3 /ipalib
parent80c0e5cb8d689cf1ec6a883d2c7000f9dadbf7d8 (diff)
downloadfreeipa-25a6ddcce8e7b9effaf19431c421dc5b3497fa22.tar.gz
freeipa-25a6ddcce8e7b9effaf19431c421dc5b3497fa22.tar.xz
freeipa-25a6ddcce8e7b9effaf19431c421dc5b3497fa22.zip
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 <ftweedal@redhat.com>
Diffstat (limited to 'ipalib')
-rw-r--r--ipalib/install/service.py6
1 files changed, 4 insertions, 2 deletions
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',
)