From b4e5942ca79b8f5702c80197ec40eab8fa053a24 Mon Sep 17 00:00:00 2001 From: Jocelyn Jaubert Date: Mon, 21 May 2018 22:10:13 +0200 Subject: [PATCH] Make it possible to change path used by upgrade.sh on command line --- scripts/upgrade.sh | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/scripts/upgrade.sh b/scripts/upgrade.sh index abb7e9414..295e16bfd 100755 --- a/scripts/upgrade.sh +++ b/scripts/upgrade.sh @@ -2,7 +2,24 @@ set -eu -PEERTUBE_PATH=/var/www/peertube/ +PEERTUBE_PATH=${1:-/var/www/peertube/} + +if [ ! -e "$PEERTUBE_PATH" ]; then + echo "Error - path \"$PEERTUBE_PATH\" wasn't found" + echo "" + echo "If peertube was installed in another path, you can specify it with" + echo " ./upgrade.sh " + exit 1 +fi + +if [ ! -e "$PEERTUBE_PATH/versions" -o ! -e "$PEERTUBE_PATH/config/production.yaml" ]; then + echo "Error - Couldn't find peertube installation in \"$PEERTUBE_PATH\"" + echo "" + echo "If peertube was installed in another path, you can specify it with" + echo " ./upgrade.sh " + exit 1 +fi + # Backup database SQL_BACKUP_PATH="$PEERTUBE_PATH/backup/sql-peertube_prod-$(date +"%Y%m%d-%H%M").bak" -- 2.25.1