26 lines
685 B
Diff
26 lines
685 B
Diff
From ef08dbdc4f1fbf86cee3842eec5de32da5468609 Mon Sep 17 00:00:00 2001
|
|
From: Ivan Devat <idevat@redhat.com>
|
|
Date: Thu, 11 Aug 2022 16:06:29 +0200
|
|
Subject: [PATCH 1/2] fix enable sbd from webui
|
|
|
|
---
|
|
pcsd/remote.rb | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/pcsd/remote.rb b/pcsd/remote.rb
|
|
index 74151190..a8aff853 100644
|
|
--- a/pcsd/remote.rb
|
|
+++ b/pcsd/remote.rb
|
|
@@ -2412,7 +2412,7 @@ def remote_enable_sbd(params, request, auth_user)
|
|
end
|
|
|
|
_, stderr, retcode = run_cmd(
|
|
- auth_user, PCS, *flags, '--' 'stonith', 'sbd', 'enable', *arg_list
|
|
+ auth_user, PCS, *flags, '--', 'stonith', 'sbd', 'enable', *arg_list
|
|
)
|
|
|
|
if retcode != 0
|
|
--
|
|
2.37.1
|
|
|