File crmsh-cibadmin_can_patch.patch of Package crmsh.2501
commit 043a73a179116619bff65c46e3f6ac693dd57d3f
Author: Kristoffer Grönlund <krig@koru.se>
Date: Thu Dec 12 15:06:21 2013 +0100
Medium: utils: Enable CIB patches for 1.1.10>
Enable CIB patches on patched 1.1.10 systems.
diff --git a/modules/utils.py b/modules/utils.py
index 624fcbf0d841..45277fb10003 100644
--- a/modules/utils.py
+++ b/modules/utils.py
@@ -1097,8 +1097,8 @@ def cibadmin_features():
def cibadmin_can_patch():
- # cibadmin -P doesn't handle comments in <1.1.11 (unless patched)
- return is_min_pcmk_ver("1.1.11")
+ # cibadmin -P doesn't handle comments in <1.1.10 (unless patched)
+ return is_min_pcmk_ver("1.1.10")
# quote function from python module shlex.py in python 3.3