pcs/do-not-use-bundled-ruby-gems.patch
Ivan Devat af67efa0f5 Resolves: rhbz#1618911
- Fixed error with missing rubygem location during pcsd start
2018-08-25 11:14:44 +02:00

26 lines
733 B
Diff

From fac7ecf0baf41e97426327ac49b02e6067969cbe Mon Sep 17 00:00:00 2001
From: Ivan Devat <idevat@redhat.com>
Date: Sat, 25 Aug 2018 09:27:12 +0200
Subject: [PATCH 2/2] do not use bundled ruby gems
---
pcs/settings_default.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pcs/settings_default.py b/pcs/settings_default.py
index 45e3c09..e321981 100644
--- a/pcs/settings_default.py
+++ b/pcs/settings_default.py
@@ -76,7 +76,7 @@ default_ssl_options = ",".join([
])
# Set pcsd_gem_path to None if there are no bundled ruby gems and the path does
# not exists.
-pcsd_gem_path = "vendor/bundle/ruby"
+pcsd_gem_path = None
ruby_executable = "/usr/bin/ruby"
gui_session_lifetime_seconds=60 * 60
--
1.8.3.1