upgrade.sh 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. #!/bin/sh
  2. set -eu
  3. PEERTUBE_PATH=${1:-/var/www/peertube/}
  4. if [ ! -e "$PEERTUBE_PATH" ]; then
  5. echo "Error - path \"$PEERTUBE_PATH\" wasn't found"
  6. echo ""
  7. echo "If peertube was installed in another path, you can specify it with"
  8. echo " ./upgrade.sh <PATH>"
  9. exit 1
  10. fi
  11. if [ ! -e "$PEERTUBE_PATH/versions" -o ! -e "$PEERTUBE_PATH/config/production.yaml" ]; then
  12. echo "Error - Couldn't find peertube installation in \"$PEERTUBE_PATH\""
  13. echo ""
  14. echo "If peertube was installed in another path, you can specify it with"
  15. echo " ./upgrade.sh <PATH>"
  16. exit 1
  17. fi
  18. if [ -x "$(command -v awk)" ] && [ -x "$(command -v sed)" ] ; then
  19. REMAINING=$(df -k $PEERTUBE_PATH | awk '{ print $4}' | sed -n 2p)
  20. ONE_GB=$((1024 * 1024))
  21. if [ "$REMAINING" -lt "$ONE_GB" ]; then
  22. echo "Error - not enough free space for upgrading"
  23. echo ""
  24. echo "Make sure you have at least 1 GB of free space in $PEERTUBE_PATH"
  25. exit 1
  26. fi
  27. fi
  28. # Backup database
  29. SQL_BACKUP_PATH="$PEERTUBE_PATH/backup/sql-peertube_prod-$(date +"%Y%m%d-%H%M").bak"
  30. DB_USER=$(node -e "console.log(require('js-yaml').safeLoad(fs.readFileSync('$PEERTUBE_PATH/config/production.yaml', 'utf8'))['database']['username'])")
  31. DB_PASS=$(node -e "console.log(require('js-yaml').safeLoad(fs.readFileSync('$PEERTUBE_PATH/config/production.yaml', 'utf8'))['database']['password'])")
  32. DB_HOST=$(node -e "console.log(require('js-yaml').safeLoad(fs.readFileSync('$PEERTUBE_PATH/config/production.yaml', 'utf8'))['database']['hostname'])")
  33. DB_SUFFIX=$(node -e "console.log(require('js-yaml').safeLoad(fs.readFileSync('$PEERTUBE_PATH/config/production.yaml', 'utf8'))['database']['suffix'])")
  34. mkdir -p $PEERTUBE_PATH/backup
  35. PGPASSWORD=$DB_PASS pg_dump -U $DB_USER -h $DB_HOST -F c "peertube${DB_SUFFIX}" -f "$SQL_BACKUP_PATH"
  36. # If there is a pre-release, give the user a choice which one to install.
  37. RELEASE_VERSION=$(curl -s https://api.github.com/repos/chocobozzz/peertube/releases/latest | grep tag_name | cut -d '"' -f 4)
  38. PRE_RELEASE_VERSION=$(curl -s https://api.github.com/repos/chocobozzz/peertube/releases | grep tag_name | head -1 | cut -d '"' -f 4)
  39. if [ "$RELEASE_VERSION" != "$PRE_RELEASE_VERSION" ]; then
  40. echo -e "Which version do you want to install?\n[1] $RELEASE_VERSION (stable) \n[2] $PRE_RELEASE_VERSION (pre-release)"
  41. read choice
  42. case $choice in
  43. [1]* ) VERSION="$RELEASE_VERSION";;
  44. [2]* ) VERSION="$PRE_RELEASE_VERSION";;
  45. * ) exit;
  46. esac
  47. else
  48. VERSION="$RELEASE_VERSION"
  49. fi
  50. echo "Installing Peertube version $VERSION"
  51. wget -q "https://github.com/Chocobozzz/PeerTube/releases/download/${VERSION}/peertube-${VERSION}.zip" -O "$PEERTUBE_PATH/versions/peertube-${VERSION}.zip"
  52. cd $PEERTUBE_PATH/versions
  53. unzip -o "peertube-${VERSION}.zip"
  54. rm -f "peertube-${VERSION}.zip"
  55. # Upgrade Scripts
  56. rm -rf $PEERTUBE_PATH/peertube-latest
  57. ln -s "$PEERTUBE_PATH/versions/peertube-${VERSION}" $PEERTUBE_PATH/peertube-latest
  58. cd $PEERTUBE_PATH/peertube-latest
  59. yarn install --production --pure-lockfile
  60. cp $PEERTUBE_PATH/peertube-latest/config/default.yaml $PEERTUBE_PATH/config/default.yaml
  61. echo "Differences in configuration files..."
  62. diff -u $PEERTUBE_PATH/config/production.yaml "$PEERTUBE_PATH/versions/peertube-${VERSION}/config/production.yaml.example"