]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - scripts/upgrade.sh
Update shebang and date format for working on FreeBSD (fix typo)
[github/Chocobozzz/PeerTube.git] / scripts / upgrade.sh
index 1299ac55a06ef5a9268e03107c9fd651947cc84a..bd90ce56020133992ab3cb10574d9d9427a59cd6 100755 (executable)
@@ -1,16 +1,29 @@
-#!/usr/bin/env sh
+#!/usr/bin/env bash
 
+# Strict mode
+set -e
 
-git pull origin $(git rev-parse --abbrev-ref HEAD) || exit -1
+# Backup database
+SQL_BACKUP_PATH="/var/www/peertube/backup/sql-peertube_prod-$(date +\"%Y%m%d-%H%M\").bak" 
+mkdir -p /var/www/peertube/backup
+pg_dump -U peertube -W -h localhost -F c peertube_prod -f "$SQL_BACKUP_PATH" 
 
-if [[ `pgrep peertube` > /dev/null ]]; then
-  echo 'PeerTube is running!'
-  exit 0
-fi
+# 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 /var/www/peertube/versions/peertube-${VERSION}.zip
+cd /var/www/peertube/versions
+unzip -o peertube-${VERSION}.zip
+rm -f peertube-${VERSION}.zip
 
-npm install
-npm update
-cd client && npm update && cd ../
-npm run build
+# Upgrade Scripts
+rm -rf /var/www/peertube/peertube-latest
+ln -s /var/www/peertube/versions/peertube-${VERSION} /var/www/peertube/peertube-latest
+cd  /var/www/peertube/peertube-latest
+yarn install --production --pure-lockfile 
+cp /var/www/peertube/peertube-latest/config/default.yaml /var/www/peertube/config/default.yaml
 
-echo "\n\nUpgrade finished! You can restart PeerTube that may run the migration scripts."
+echo "Differences in configuration files..."
+diff /var/www/peertube/versions/peertube-${VERSION}/config/production.yaml.example /var/www/peertube/config/production.yaml
+
+exit 0