aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rwxr-xr-xscripts/upgrade.sh16
1 files changed, 9 insertions, 7 deletions
diff --git a/scripts/upgrade.sh b/scripts/upgrade.sh
index 0a9ce1dab..4f7c58edd 100755
--- a/scripts/upgrade.sh
+++ b/scripts/upgrade.sh
@@ -20,13 +20,15 @@ if [ ! -e "$PEERTUBE_PATH/versions" -o ! -e "$PEERTUBE_PATH/config/production.ya
20 exit 1 20 exit 1
21fi 21fi
22 22
23REMAINING=$(df -k $PEERTUBE_PATH | awk '{ print $4}' | sed -n 2p) 23if [ -x "$(command -v awk)" ] && [ -x "$(command -v sed)" ] ; then
24ONE_GB=$((1024 * 1024)) 24 REMAINING=$(df -k $PEERTUBE_PATH | awk '{ print $4}' | sed -n 2p)
25if [ "$REMAINING" -lt "$ONE_GB" ]; then 25 ONE_GB=$((1024 * 1024))
26 echo "Error - not enough free space for upgrading" 26 if [ "$REMAINING" -lt "$ONE_GB" ]; then
27 echo "" 27 echo "Error - not enough free space for upgrading"
28 echo "Make sure you have at least 1 GB of free space in $PEERTUBE_PATH" 28 echo ""
29 exit 1 29 echo "Make sure you have at least 1 GB of free space in $PEERTUBE_PATH"
30 exit 1
31 fi
30fi 32fi
31 33
32# Backup database 34# Backup database