public inbox for cluster-cvs@sourceware.org
help / color / mirror / Atom feed
From: "Fabio M. Di Nitto" <fabbione@fedoraproject.org>
To: cluster-cvs-relay@redhat.com
Subject: cluster: STABLE3 - cman init: make groupd check more robust
Date: Tue, 28 Apr 2009 18:34:00 -0000	[thread overview]
Message-ID: <20090428183428.EAD701201F1@lists.fedorahosted.org> (raw)

Gitweb:        http://git.fedorahosted.org/git/cluster.git?p=cluster.git;a=commitdiff;h=eab924426b6cdd84cb1ac3d2d976d56437c0b3e3
Commit:        eab924426b6cdd84cb1ac3d2d976d56437c0b3e3
Parent:        c05898ee8365a6a0046ff7eb2497d4a94ebbab80
Author:        Fabio M. Di Nitto <fdinitto@redhat.com>
AuthorDate:    Tue Apr 28 20:33:57 2009 +0200
Committer:     Fabio M. Di Nitto <fdinitto@redhat.com>
CommitterDate: Tue Apr 28 20:33:57 2009 +0200

cman init: make groupd check more robust

avoid stupid errors on startup

Signed-off-by: Fabio M. Di Nitto <fdinitto@redhat.com>
---
 cman/init.d/cman.in |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/cman/init.d/cman.in b/cman/init.d/cman.in
index 3ba6c15..38c3fbb 100644
--- a/cman/init.d/cman.in
+++ b/cman/init.d/cman.in
@@ -321,9 +321,8 @@ groupd_enabled()
 	groupd_compat="$(ccs_tool query /cluster/group/@groupd_compat \
 			2>/dev/null || true)"
 
-	if [ -z "$groupd_compat" ] || [ $groupd_compat == 0 ]; then
-		return 1
-	fi
+	[ -z "$groupd_compat" ] && return 1
+	[ "$groupd_compat" == 0 ] && return 1
 }
 
 cmannotifyd_enabled()


                 reply	other threads:[~2009-04-28 18:34 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20090428183428.EAD701201F1@lists.fedorahosted.org \
    --to=fabbione@fedoraproject.org \
    --cc=cluster-cvs-relay@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).