|
|
b7d5c1 |
From fea1b0b59b8c3a2bfdb294b274b6572d42075a00 Mon Sep 17 00:00:00 2001
|
|
|
b7d5c1 |
From: Mark Reynolds <mreynolds@redhat.com>
|
|
|
b7d5c1 |
Date: Mon, 17 Apr 2017 17:06:19 -0400
|
|
|
b7d5c1 |
Subject: [PATCH] Issue 49221 - During an upgrade the provided localhost name
|
|
|
b7d5c1 |
is ignored
|
|
|
b7d5c1 |
|
|
|
b7d5c1 |
Description: If the FullMachine name, or localhost, is provided in an INF
|
|
|
b7d5c1 |
it is ignored during the upgrade the value of nsslapd-localhost
|
|
|
b7d5c1 |
from the current server is used instead. We should only override
|
|
|
b7d5c1 |
the localhost value if it is missing.
|
|
|
b7d5c1 |
|
|
|
b7d5c1 |
https://pagure.io/389-ds-base/issue/49221
|
|
|
b7d5c1 |
|
|
|
b7d5c1 |
Reviewed by: nhosoi(Thanks!)
|
|
|
b7d5c1 |
|
|
|
b7d5c1 |
(cherry picked from commit 8979cc699a7bd0459a9285f66dca472e8108b1ad)
|
|
|
b7d5c1 |
---
|
|
|
b7d5c1 |
ldap/admin/src/scripts/DSUpdate.pm.in | 4 +++-
|
|
|
b7d5c1 |
1 file changed, 3 insertions(+), 1 deletion(-)
|
|
|
b7d5c1 |
|
|
|
b7d5c1 |
diff --git a/ldap/admin/src/scripts/DSUpdate.pm.in b/ldap/admin/src/scripts/DSUpdate.pm.in
|
|
|
b7d5c1 |
index e84a9a9..8b24b47 100644
|
|
|
b7d5c1 |
--- a/ldap/admin/src/scripts/DSUpdate.pm.in
|
|
|
b7d5c1 |
+++ b/ldap/admin/src/scripts/DSUpdate.pm.in
|
|
|
b7d5c1 |
@@ -435,7 +435,9 @@ sub initInfFromInst {
|
|
|
b7d5c1 |
my $servid = $inst;
|
|
|
b7d5c1 |
$servid =~ s/slapd-//;
|
|
|
b7d5c1 |
|
|
|
b7d5c1 |
- $inf->{General}->{FullMachineName} = $entry->getValue("nsslapd-localhost");
|
|
|
b7d5c1 |
+ if (!$inf->{General}->{FullMachineName}) {
|
|
|
b7d5c1 |
+ $inf->{General}->{FullMachineName} = $entry->getValue("nsslapd-localhost");
|
|
|
b7d5c1 |
+ }
|
|
|
b7d5c1 |
$inf->{General}->{SuiteSpotUserID} = $entry->getValue("nsslapd-localuser");
|
|
|
b7d5c1 |
$inf->{slapd}->{ServerPort} = $entry->getValue("nsslapd-port");
|
|
|
b7d5c1 |
$inf->{slapd}->{ldapifilepath} = $entry->getValue("nsslapd-ldapifilepath");
|
|
|
b7d5c1 |
--
|
|
|
b7d5c1 |
2.9.3
|
|
|
b7d5c1 |
|