]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - scripts/upgrade.sh
Fix error logging
[github/Chocobozzz/PeerTube.git] / scripts / upgrade.sh
1 #!/usr/bin/env bash
2
3 # Strict mode
4 set -e
5
6 # Backup database
7 SQL_BACKUP_PATH="/var/www/peertube/backup/sql-peertube_prod-$(date +\"%Y%m%d-%H%M\").bak"
8 mkdir -p /var/www/peertube/backup
9 pg_dump -U peertube -W -h localhost -F c peertube_prod -f "$SQL_BACKUP_PATH"
10
11 # Get and Display the Latest Version
12 VERSION=$(curl -s https://api.github.com/repos/chocobozzz/peertube/releases/latest | grep tag_name | cut -d '"' -f 4)
13 echo "Latest Peertube version is $VERSION"
14 wget -q "https://github.com/Chocobozzz/PeerTube/releases/download/${VERSION}/peertube-${VERSION}.zip" -O /var/www/peertube/versions/peertube-${VERSION}.zip
15 cd /var/www/peertube/versions
16 unzip -o peertube-${VERSION}.zip
17 rm -f peertube-${VERSION}.zip
18
19 # Upgrade Scripts
20 rm -rf /var/www/peertube/peertube-latest
21 ln -s /var/www/peertube/versions/peertube-${VERSION} /var/www/peertube/peertube-latest
22 cd /var/www/peertube/peertube-latest
23 yarn install --production --pure-lockfile
24 cp /var/www/peertube/peertube-latest/config/default.yaml /var/www/peertube/config/default.yaml
25
26 echo "Differences in configuration files..."
27 diff /var/www/peertube/versions/peertube-${VERSION}/config/production.yaml.example /var/www/peertube/config/production.yaml
28
29 exit 0