From cb305b9fc0ae3f554b71aa3839d091424c660e63 Mon Sep 17 00:00:00 2001 From: Peter Rajnoha Date: Thu, 9 Jul 2015 10:35:41 +0200 Subject: [PATCH] lvmconf: fix ignored --startstopservices in lvmconf ... --mirrorservice on systemd If running lvmconf ... --startstopservice --mirrorservice in systemd environment, handle lvm2-cmirrord accordingly. A typo in the script caused the lvm2-cmirrord to not start/stop immediately, it was only enabled/disabled (so the --startstopservice was ignored in this case). --- WHATS_NEW | 1 + scripts/lvmconf.sh | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/WHATS_NEW b/WHATS_NEW index 1a8bbbbdf..f3da3e03d 100644 --- a/WHATS_NEW +++ b/WHATS_NEW @@ -1,5 +1,6 @@ Version 2.02.126 - ================================ + Fix ignored --startstopservices option if running lvmconf with systemd. Version 2.02.125 - 7th July 2015 ================================ diff --git a/scripts/lvmconf.sh b/scripts/lvmconf.sh index 396f7a1c8..c3c170036 100644 --- a/scripts/lvmconf.sh +++ b/scripts/lvmconf.sh @@ -412,12 +412,12 @@ if [ "$HANDLE_SERVICES" == "1" ]; then if [ "$LOCKING_TYPE" = "3" ]; then set_service systemd activate lvm2-cluster-activation.service - if [ "$HANDLE_CMIRROR_SERVICE" ]; then + if [ "$HANDLE_MIRROR_SERVICE" = "1" ]; then set_service activate lvm2-cmirrord.service fi else set_service systemd deactivate lvm2-cluster-activation.service - if [ "$HANDLE_CMIRROR_SERVICE" ]; then + if [ "$HANDLE_MIRROR_SERVICE" = "1" ]; then set_service systemd deactivate lvm2-cmirrord.service fi fi