From 3baaf88af512492dd5315a50cf421fbcf51ef9b8 Mon Sep 17 00:00:00 2001 From: Su Yue Date: Sun, 7 Jul 2024 16:52:18 +0800 Subject: [PATCH 3/3] drbd.ocf: update for OCF 1.1 According to [1], the commit 1. bumps drbd ocf version to 1.5 2. updates the element to 1.1 for declare support OCF 1.1. 3. uses unique-group attribute but keeps deprecated unique attribute. 4. advertises new role names 'Unpromoted' and 'Unpromoted' instead of 'Master' and 'Slave'. Because of change[4], the drbd ocf RA won't be able to support old names so we need to bump version of the RA. Links: https://projects.clusterlabs.org/w/development/update_resource_agent_for_ocf_1.1/ Signed-off-by: Su Yue --- scripts/drbd.ocf | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/scripts/drbd.ocf b/scripts/drbd.ocf index bbe25f38edda..5b213640ec38 100755 --- a/scripts/drbd.ocf +++ b/scripts/drbd.ocf @@ -233,13 +233,13 @@ meta_data() { - + -1.0 +1.1 -This resource agent manages a DRBD resource as a master/slave resource. +This resource agent manages a DRBD resource as a promotable resource. DRBD is a shared-nothing replicated storage device. NOTE: @@ -253,10 +253,10 @@ See the DRBD User's Guide for more information. https://docs.linbit.com/ -Manages a DRBD device as a Master/Slave resource +Manages a DRBD device as a promotable resource - + The name of the drbd resource from the drbd.conf file. @@ -483,8 +483,8 @@ to be generated after the failover of a "healthy" DRBD. - - + + @@ -974,7 +974,7 @@ drbd_monitor() { fi case $status in - (0) : "OCF_SUCCESS aka 'running/slave'" ;; + (0) : "OCF_SUCCESS aka 'running/unpromotable'" ;; (1) : "OCF_ERR_GENERIC" ;; (2) : "OCF_ERR_ARGS" ;; (3) : "OCF_ERR_UNIMPLEMENTED" ;; -- 2.45.2