From dfda3ff8741fcdbac3150456ca7614cf75ef1776 Mon Sep 17 00:00:00 2001 From: Owen Synge Date: Thu, 7 May 2015 12:02:41 +0200 Subject: [PATCH] Bug fix to ceph systemV compatability script. Was failing with more than one OSD / MON deamon on a single node. Fixes suse bugzilla #927862 Signed-off-by: Owen Synge --- systemd/ceph | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/systemd/ceph b/systemd/ceph index 251b4a032fe..1657779f44c 100644 --- a/systemd/ceph +++ b/systemd/ceph @@ -33,14 +33,14 @@ prefix="${cluster}-" case $action in start | stop | status | enable | disable | mask | unmask | restart | is-active | is-failed | show | kill | reset-failed ) n=0 - if test -n ${lmon} ; then + if test -n "${lmon}" ; then for s in ${lmon#=${prefix}} ; do systemctl "${action}" ceph-mon@${s#$prefix}.service rc_check ((++n)) done fi - if test -n ${losd} ; then + if test -n "${losd}" ; then for s in ${losd#=${prefix}} ; do systemctl "${action}" ceph-osd@${s#$prefix}.service rc_check -- 2.47.3