diff options
Diffstat (limited to 'xlators/mgmt/glusterd/src/glusterd.c')
-rw-r--r-- | xlators/mgmt/glusterd/src/glusterd.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/xlators/mgmt/glusterd/src/glusterd.c b/xlators/mgmt/glusterd/src/glusterd.c index 33c9ac796..15cc9cd86 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); |