Blame SOURCES/bz1549579-2-ocf_is_true-add-True-to-regexp.patch

391384
From 73b35b74b743403aeebab43205475be6f2938cd5 Mon Sep 17 00:00:00 2001
391384
From: Oyvind Albrigtsen <oalbrigt@redhat.com>
391384
Date: Wed, 12 Jun 2019 10:11:07 +0200
391384
Subject: [PATCH] ocf_is_true: add True to regexp
391384
391384
---
391384
 heartbeat/ocf-shellfuncs.in | 2 +-
391384
 1 file changed, 1 insertion(+), 1 deletion(-)
391384
391384
diff --git a/heartbeat/ocf-shellfuncs.in b/heartbeat/ocf-shellfuncs.in
391384
index b17297e1a..7a97558a5 100644
391384
--- a/heartbeat/ocf-shellfuncs.in
391384
+++ b/heartbeat/ocf-shellfuncs.in
391384
@@ -101,7 +101,7 @@ ocf_is_decimal() {
391384
 
391384
 ocf_is_true() {
391384
 	case "$1" in
391384
-	yes|true|1|YES|TRUE|ja|on|ON) true ;;
391384
+	yes|true|1|YES|TRUE|True|ja|on|ON) true ;;
391384
 	*)	false ;;
391384
 	esac
391384
 }