From e036c609753d8d35e1a62480de59ca947981ea41 Mon Sep 17 00:00:00 2001 From: Simon Pichugin Date: Jul 24 2020 13:34:45 +0000 Subject: Issue 51086 - Fix instance name length for interactive install Description: Instance name lenght is not properly validated during interactive install. Add a check during a user input. https://pagure.io/389-ds-base/issue/51086 Reviewed by: mreynolds (Thanks!) --- diff --git a/src/lib389/lib389/instance/setup.py b/src/lib389/lib389/instance/setup.py index fb2b2d9..e1862f0 100644 --- a/src/lib389/lib389/instance/setup.py +++ b/src/lib389/lib389/instance/setup.py @@ -308,6 +308,9 @@ class SetupDs(object): val = input('\nEnter the instance name [{}]: '.format(slapd['instance_name'])).rstrip() if val != "": + if len(val) > 80: + print("Server identifier should not be longer than 80 symbols") + continue if not all(ord(c) < 128 for c in val): print("Server identifier can not contain non ascii characters") continue