From b41fbceeafea126f8e014da5d3596138c6cf0feb Mon Sep 17 00:00:00 2001 From: Tomas Babej Date: Thu, 25 Feb 2016 14:09:48 +0100 Subject: ipa-adtrust-install: Allow dash in the NETBIOS name Reviewed-By: Martin Babinsky --- install/tools/ipa-adtrust-install | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'install') 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("") -- cgit