From f8e5e01099f0dedb12feead3584607d6e80ee4bf Mon Sep 17 00:00:00 2001 From: Viktor Ashirov Date: May 23 2019 14:17:40 +0000 Subject: Issue 50403 - Instance creation fails on 1.3.9 using perl utils and latest lib389 Bug Description: There is a typo in formatInfData() that generates invalid inf file. Fix Description: Fix the typo. Fixes https://pagure.io/389-ds-base/issue/50403 Reviewed by: mreynolds (Thanks!) --- diff --git a/src/lib389/lib389/utils.py b/src/lib389/lib389/utils.py index 49bcad8..783c1cd 100644 --- a/src/lib389/lib389/utils.py +++ b/src/lib389/lib389/utils.py @@ -958,7 +958,7 @@ def formatInfData(args): content = ("[General]" "\n") content += ("FullMachineName= %s\n" % args[SER_HOST]) content += ("SuiteSpotUserID= %s\n" % args[SER_USER_ID]) - content += ("nSuiteSpotGroup= %s\n" % args[SER_GROUP_ID]) + content += ("SuiteSpotGroup= %s\n" % args[SER_GROUP_ID]) content += ("StrictHostCheck= %s\n" % args[SER_STRICT_HOSTNAME_CHECKING]) if args.get('have_admin'):