From a6cc486e5733bcbe1bf562d6a523a5dd334cdf81 Mon Sep 17 00:00:00 2001 From: Sachidananda Date: Fri, 20 Aug 2010 01:28:32 +0000 Subject: xlators/mgmt: exit if directory creation fails. Signed-off-by: Sachidananda Urs Signed-off-by: Anand V. Avati BUG: 1408 (glusterd continues despite directory creation fails.) URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=1408 --- xlators/mgmt/glusterd/src/glusterd.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'xlators') diff --git a/xlators/mgmt/glusterd/src/glusterd.c b/xlators/mgmt/glusterd/src/glusterd.c index 33c9ac796cd..15cc9cd86a0 100644 --- a/xlators/mgmt/glusterd/src/glusterd.c +++ b/xlators/mgmt/glusterd/src/glusterd.c @@ -234,6 +234,7 @@ init (xlator_t *this) gf_log (this->name, GF_LOG_CRITICAL, "Unable to create directory %s" " ,errno = %d", dirname, errno); + exit (1); } } @@ -248,6 +249,7 @@ init (xlator_t *this) gf_log (this->name, GF_LOG_CRITICAL, "Unable to create volume directory %s" " ,errno = %d", voldir, errno); + exit (1); } snprintf (voldir, PATH_MAX, "%s/peers", dirname); @@ -258,6 +260,7 @@ init (xlator_t *this) gf_log (this->name, GF_LOG_CRITICAL, "Unable to create peers directory %s" " ,errno = %d", voldir, errno); + exit (1); } rpc = rpcsvc_init (this->ctx, this->options); -- cgit