From dbcfd38c18a29d1170a046eb6cc48da30cd98303 Mon Sep 17 00:00:00 2001 From: Christophe Romain Date: Wed, 13 May 2015 15:54:28 +0200 Subject: [PATCH] Allow run joincluster as non root when ejabberd installed as root (#497) --- tools/joincluster | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/joincluster b/tools/joincluster index e62084bc4..b3516d94d 100755 --- a/tools/joincluster +++ b/tools/joincluster @@ -95,8 +95,7 @@ REMOTENAME=-name set -o errexit set -o nounset -[ -d $SPOOL_DIR ] && rm -Rf $SPOOL_DIR -mkdir $SPOOL_DIR || error "$SPOOL_DIR cannot be created" 20 +[ -d $SPOOL_DIR ] && rm -Rf $SPOOL_DIR/* || mkdir -p $SPOOL_DIR || error "$SPOOL_DIR cannot be created" 20 [ -w $SPOOL_DIR ] || error "$SPOOL_DIR directory is not writable" 21 mkdir -p $PA || error "$PA cannot be created" 22 cd $PA