Merge "Move $DEST creation after logging setup"

This commit is contained in:
Jenkins 2015-10-09 13:58:23 +00:00 committed by Gerrit Code Review
commit b2b82a0f34

View File

@ -315,9 +315,6 @@ sudo mkdir -p $DEST
safe_chown -R $STACK_USER $DEST
safe_chmod 0755 $DEST
# Basic test for ``$DEST`` path permissions (fatal on error unless skipped)
check_path_perm_sanity ${DEST}
# Destination path for service data
DATA_DIR=${DATA_DIR:-${DEST}/data}
sudo mkdir -p $DATA_DIR
@ -452,6 +449,8 @@ if [[ -n "$SCREEN_LOGDIR" ]]; then
fi
fi
# Basic test for ``$DEST`` path permissions (fatal on error unless skipped)
check_path_perm_sanity ${DEST}
# Configure Error Traps
# ---------------------