Make it possible to change path used by upgrade.sh on command line
This commit is contained in:
parent
ee1219d83d
commit
b4e5942ca7
1 changed files with 18 additions and 1 deletions
|
@ -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 <PATH>"
|
||||
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 <PATH>"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
|
||||
# Backup database
|
||||
SQL_BACKUP_PATH="$PEERTUBE_PATH/backup/sql-peertube_prod-$(date +"%Y%m%d-%H%M").bak"
|
||||
|
|
Loading…
Add table
Reference in a new issue