Upgrade.sh (#281)
* Upgrade.sh Bash script for upgrading Instance * add bash strict mode * move to "scripts" folder and other fix * Rename scirpts/upgrade.sh to scripts/upgrade.sh * Fix SQL BACKUP path * Fix symbolic link update
This commit is contained in:
parent
053ad3a346
commit
64586951de
1 changed files with 34 additions and 0 deletions
34
scripts/upgrade.sh
Normal file
34
scripts/upgrade.sh
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
### Note !! ###
|
||||||
|
# On shell prompt do :
|
||||||
|
#
|
||||||
|
# $ su - peertube
|
||||||
|
# $ ./upgrade.sh
|
||||||
|
############
|
||||||
|
|
||||||
|
# Stcict mode
|
||||||
|
set -e
|
||||||
|
|
||||||
|
# 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"
|
||||||
|
|
||||||
|
# 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
|
||||||
|
|
||||||
|
# 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
|
Loading…
Add table
Reference in a new issue