summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--xlators/mgmt/glusterd/src/glusterd.c3
1 files changed, 3 insertions, 0 deletions
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);