]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - scripts/upgrade.sh
Rewrite infinite scroll
[github/Chocobozzz/PeerTube.git] / scripts / upgrade.sh
old mode 100755 (executable)
new mode 100644 (file)
index 022e761..d6ee9d1
@@ -1,16 +1,34 @@
-#!/usr/bin/env sh
+#!/bin/bash
 
+### Note !! ###
+# On shell prompt do :
+#
+# $ su - peertube
+# $ ./upgrade.sh
+############
 
-git pull origin $(git rev-parse --abbrev-ref HEAD) || exit -1
+# Stcict mode 
+set -e
 
-if pgrep peertube > /dev/null; then
-  echo 'PeerTube is running!'
-  exit 0
-fi
+# Backup database
+SQL_BACKUP_PATH="/var/www/peertube/backup/sql-peertube_prod-$(date -Im).bak" 
+mkdir -p ~/backup
+pg_dump -U peertube -W -h localhost -F c peertube_prod -f "$SQL_BACKUP_PATH" 
 
-npm install
-npm update
-cd client && npm update && cd ../
-npm run build
+# Get and Display the Latest Version
+VERSION=$(curl -s https://api.github.com/repos/chocobozzz/peertube/releases/latest | grep tag_name | cut -d '"' -f 4)
+echo "Latest Peertube version is $VERSION"
+wget -q "https://github.com/Chocobozzz/PeerTube/releases/download/${VERSION}/peertube-${VERSION}.zip" -O ~/versions/peertube-${VERSION}.zip 
+cd ~/versions
+unzip -o peertube-${VERSION}.zip
+rm -f peertube-${VERSION}.zip
 
-echo "\n\nUpgrade finished! You can restart PeerTube that may run the migration scripts."
+# Upgrade Scripts
+rm -rf ~/peertube-latest
+ln -s ~/versions/peertube-${VERSION} ~/peertube-latest
+cd  ~/peertube-latest
+yarn install --production --pure-lockfile 
+cp  ~/peertube-latest/config/default.yaml ~/config/default.yaml
+diff  ~/peertube-latest/config/production.yaml.example ~/config/production.yaml 
+
+exit 0