import sap-cluster-connector-3.0.1-4.el8_2.1

This commit is contained in:
CentOS Sources 2020-06-09 18:08:42 -04:00 committed by Stepan Oksanichenko
parent c80cccb86a
commit 22f931b641
2 changed files with 46 additions and 1 deletions

View File

@ -0,0 +1,38 @@
From 42d6ce2143f4439fed8c8b31e03dde655f1bbadb Mon Sep 17 00:00:00 2001
From: Frank Danapfel <frank.danapfel@redhat.com>
Date: Tue, 21 Apr 2020 14:11:36 +0200
Subject: [PATCH] Allow nodenames with dashes and/or underscores in lsn
function
---
redhat/sap_cluster_connector | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/redhat/sap_cluster_connector b/redhat/sap_cluster_connector
index a88b27a..6250887 100755
--- a/redhat/sap_cluster_connector
+++ b/redhat/sap_cluster_connector
@@ -401,7 +401,7 @@ sub list_sap_nodes {
chomp $crm_res_location_in;
#printf "DBG: where-result: %s\n", $crm_res_location_in;
my $current_node="";
- if ( $crm_res_location_in =~ /^resource\s+(\w)+\sis running on:\s+(\w+)\W*/ ) {
+ if ( $crm_res_location_in =~ /^resource\s+(\w)+\sis running on:\s+([a-zA-Z0-9_-]+)/ ) {
#printf "DBG: where-result: match\n";
$current_node = $2;
}
@@ -425,12 +425,12 @@ sub list_sap_nodes {
while (<PTEST>) {
chomp;
# printf "%s\n", $_;
- if ( /^group_color:\s*(\w+)\s+allocation score on\s+(\w+):\s+(.*)$/ ) {
+ if ( /^group_color:\s*(\w+)\s+allocation score on\s+([a-zA-Z0-9_-]+):\s+(.*)$/ ) {
# printf "DBG: group 1: %s, 2: %s, 3: %s\n", $1, $2, $3;
$resource{$1}->{nodes}->{$2}->{gc}=$3;
push(@{$resource{$1}->{priorities}->{$3}}, $2);
}
- if ( /^native_color:\s*(\w+)\s+allocation score on\s+(\w+):\s+(.*)$/ ) {
+ if ( /^native_color:\s*(\w+)\s+allocation score on\s+([a-zA-Z0-9_-]+):\s+(.*)$/ ) {
# printf "DBG: native 1: %s, 2: %s, 3: %s\n", $1, $2, $3;
$resource{$1}->{nodes}->{$2}->{nc}=$3;
push(@{$resource{$1}->{priorities}->{$3}}, $2);

View File

@ -25,7 +25,7 @@
Name: sap-cluster-connector Name: sap-cluster-connector
Summary: SAP cluster connector script Summary: SAP cluster connector script
Version: 3.0.1 Version: 3.0.1
Release: 4%{?rcver:%{rcver}}%{?numcomm:.%{numcomm}}%{?alphatag:.%{alphatag}}%{?dirty:.%{dirty}}%{?dist} Release: 4%{?rcver:%{rcver}}%{?numcomm:.%{numcomm}}%{?alphatag:.%{alphatag}}%{?dirty:.%{dirty}}%{?dist}.1
License: GPLv2+ License: GPLv2+
URL: https://github.com/fdanapfel/sap_cluster_connector URL: https://github.com/fdanapfel/sap_cluster_connector
%if 0%{?fedora} || 0%{?centos_version} || 0%{?rhel} %if 0%{?fedora} || 0%{?centos_version} || 0%{?rhel}
@ -34,6 +34,7 @@ Group: System Environment/Base
Group: Productivity/Clustering/HA Group: Productivity/Clustering/HA
%endif %endif
Source0: %{sap_script_prefix}-%{sap_script_hash}.tar.gz Source0: %{sap_script_prefix}-%{sap_script_hash}.tar.gz
Patch0: bz1832358-sap-cluster-connector-allow-dashes-underscores-in-nodenames.patch
BuildArch: noarch BuildArch: noarch
@ -46,6 +47,7 @@ instances to be managed in a cluster environment.
%prep %prep
%setup -q -n %{sap_script_prefix}-%{sap_script_hash} %setup -q -n %{sap_script_prefix}-%{sap_script_hash}
%patch0 -p1
%build %build
@ -68,6 +70,11 @@ rm -rf %{buildroot}
%{_datadir}/sap_cluster_connector %{_datadir}/sap_cluster_connector
%changelog %changelog
* Thu May 7 2020 Oyvind Albrigtsen <oalbrigt@redhat.com> - 3.0.1-4.1
- sap-cluster-connector: allow dashes/underscores in nodenames
Resolves: rhbz#1832358
* Tue Jun 25 2019 Oyvind Albrigtsen <oalbrigt@redhat.com> - 3.0.1-4 * Tue Jun 25 2019 Oyvind Albrigtsen <oalbrigt@redhat.com> - 3.0.1-4
- Initial build as separate package - Initial build as separate package