From 25264762338c210e865b3531baa33705c40e7ea9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristoffer=20Gr=C3=B6nlund?= Date: Wed, 15 Mar 2017 13:30:19 +0100 Subject: [PATCH] NodeUtilization: Fix mixed indentation, set executable bit --- extra/resources/NodeUtilization | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) mode change 100644 => 100755 extra/resources/NodeUtilization diff --git a/extra/resources/NodeUtilization b/extra/resources/NodeUtilization old mode 100644 new mode 100755 index b9c737e..f246010 --- a/extra/resources/NodeUtilization +++ b/extra/resources/NodeUtilization @@ -173,7 +173,7 @@ END } NodeUtilization_start() { - ha_pseudo_resource $statefile start + ha_pseudo_resource $statefile start if ! ocf_is_true "$OCF_RESKEY_dynamic"; then if ! set_utilization; then exit $OCF_ERR_GENERIC @@ -183,25 +183,25 @@ NodeUtilization_start() { } NodeUtilization_stop() { - ha_pseudo_resource $statefile stop + ha_pseudo_resource $statefile stop exit $OCF_SUCCESS } NodeUtilization_monitor() { - local rc - ha_pseudo_resource $statefile monitor - rc=$? - - case $rc in - $OCF_SUCCESS) - if ocf_is_true "$OCF_RESKEY_dynamic"; then - if ! set_utilization; then - exit $OCF_ERR_GENERIC - fi - fi - ;; - *) exit $rc;; - esac + local rc + ha_pseudo_resource $statefile monitor + rc=$? + + case $rc in + $OCF_SUCCESS) + if ocf_is_true "$OCF_RESKEY_dynamic"; then + if ! set_utilization; then + exit $OCF_ERR_GENERIC + fi + fi + ;; + *) exit $rc;; + esac } NodeUtilization_validate() {