summaryrefslogtreecommitdiffstats
path: root/install/tools
diff options
context:
space:
mode:
authorTomas Babej <tbabej@redhat.com>2016-02-25 14:09:48 +0100
committerTomas Babej <tbabej@redhat.com>2016-02-29 15:46:06 +0100
commitb41fbceeafea126f8e014da5d3596138c6cf0feb (patch)
tree521cfe7bf745cf9b382db1babcbdc571dda22158 /install/tools
parent8f01b47ed96ee3118479d366a71a018e8f938156 (diff)
downloadfreeipa-b41fbceeafea126f8e014da5d3596138c6cf0feb.tar.gz
freeipa-b41fbceeafea126f8e014da5d3596138c6cf0feb.tar.xz
freeipa-b41fbceeafea126f8e014da5d3596138c6cf0feb.zip
ipa-adtrust-install: Allow dash in the NETBIOS name
Reviewed-By: Martin Babinsky <mbabinsk@redhat.com>
Diffstat (limited to 'install/tools')
-rwxr-xr-xinstall/tools/ipa-adtrust-install6
1 files changed, 4 insertions, 2 deletions
diff --git a/install/tools/ipa-adtrust-install b/install/tools/ipa-adtrust-install
index 8b3fce2db..f972835ec 100755
--- a/install/tools/ipa-adtrust-install
+++ b/install/tools/ipa-adtrust-install
@@ -88,13 +88,15 @@ def parse_options():
def netbios_name_error(name):
print("\nIllegal NetBIOS name [%s].\n" % name)
- print("Up to 15 characters and only uppercase ASCII letter and digits are allowed.")
+ print("Up to 15 characters and only uppercase ASCII letters, digits "
+ "and dashes are allowed.")
def read_netbios_name(netbios_default):
netbios_name = ""
print("Enter the NetBIOS name for the IPA domain.")
- print("Only up to 15 uppercase ASCII letters and digits are allowed.")
+ print("Only up to 15 uppercase ASCII letters, digits "
+ "and dashes are allowed.")
print("Example: EXAMPLE.")
print("")
print("")