public inbox for cluster-cvs@sourceware.org
help / color / mirror / Atom feed
* cluster: STABLE3 - gfs_control: ls failure should exit with failure
@ 2009-03-27 17:56 David Teigland
0 siblings, 0 replies; only message in thread
From: David Teigland @ 2009-03-27 17:56 UTC (permalink / raw)
To: cluster-cvs-relay
Gitweb: http://git.fedorahosted.org/git/cluster.git?p=cluster.git;a=commitdiff;h=c34cda66db34b02835a949a6526653d1c1ab7b7c
Commit: c34cda66db34b02835a949a6526653d1c1ab7b7c
Parent: a29791bb28bdf1528a42be9b569378a04f162ad7
Author: David Teigland <teigland@redhat.com>
AuthorDate: Fri Mar 27 11:37:15 2009 -0500
Committer: David Teigland <teigland@redhat.com>
CommitterDate: Fri Mar 27 11:37:15 2009 -0500
gfs_control: ls failure should exit with failure
exit code of list command can be used to check if gfs_controld is running
Signed-off-by: David Teigland <teigland@redhat.com>
---
group/gfs_control/main.c | 9 ++++-----
1 files changed, 4 insertions(+), 5 deletions(-)
diff --git a/group/gfs_control/main.c b/group/gfs_control/main.c
index 4bfb392..a910efc 100644
--- a/group/gfs_control/main.c
+++ b/group/gfs_control/main.c
@@ -376,16 +376,15 @@ static void do_list(char *name)
memset(mgs, 0, sizeof(mgs));
if (name) {
- rv = gfsc_mountgroup_info(name, mgs);
- if (rv < 0)
- return;
mg_count = 1;
+ rv = gfsc_mountgroup_info(name, mgs);
} else {
rv = gfsc_mountgroups(MAX_MG, &mg_count, mgs);
- if (rv < 0)
- return;
}
+ if (rv < 0)
+ exit(EXIT_FAILURE); /* gfs_controld probably not running */
+
if (mg_count)
printf("gfs mountgroups\n");
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2009-03-27 17:56 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-03-27 17:56 cluster: STABLE3 - gfs_control: ls failure should exit with failure David Teigland
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).