Better upgrade script consistency
This commit is contained in:
parent
ac81d1a06d
commit
a8b5ce95f5
|
@ -1,34 +1,26 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
### Note !! ###
|
# Strict mode
|
||||||
# On shell prompt do :
|
|
||||||
#
|
|
||||||
# $ su - peertube
|
|
||||||
# $ ./upgrade.sh
|
|
||||||
############
|
|
||||||
|
|
||||||
# Stcict mode
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Backup database
|
# Backup database
|
||||||
SQL_BACKUP_PATH="/var/www/peertube/backup/sql-peertube_prod-$(date -Im).bak"
|
SQL_BACKUP_PATH="/var/www/peertube/backup/sql-peertube_prod-$(date -Im).bak"
|
||||||
mkdir -p ~/backup
|
mkdir -p /var/www/peertube/backup
|
||||||
pg_dump -U peertube -W -h localhost -F c peertube_prod -f "$SQL_BACKUP_PATH"
|
pg_dump -U peertube -W -h localhost -F c peertube_prod -f "$SQL_BACKUP_PATH"
|
||||||
|
|
||||||
# Get and Display the Latest Version
|
# 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)
|
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"
|
echo "Latest Peertube version is $VERSION"
|
||||||
wget -q "https://github.com/Chocobozzz/PeerTube/releases/download/${VERSION}/peertube-${VERSION}.zip" -O ~/versions/peertube-${VERSION}.zip
|
wget -q "https://github.com/Chocobozzz/PeerTube/releases/download/${VERSION}/peertube-${VERSION}.zip" -O /var/www/peertube/versions/peertube-${VERSION}.zip
|
||||||
cd ~/versions
|
cd /var/www/peertube/versions
|
||||||
unzip -o peertube-${VERSION}.zip
|
unzip -o peertube-${VERSION}.zip
|
||||||
rm -f peertube-${VERSION}.zip
|
rm -f peertube-${VERSION}.zip
|
||||||
|
|
||||||
# Upgrade Scripts
|
# Upgrade Scripts
|
||||||
rm -rf ~/peertube-latest
|
rm -rf /var/www/peertube/peertube-latest
|
||||||
ln -s ~/versions/peertube-${VERSION} ~/peertube-latest
|
ln -s /var/www/peertube/versions/peertube-${VERSION} /var/www/peertube/peertube-latest
|
||||||
cd ~/peertube-latest
|
cd /var/www/peertube/peertube-latest
|
||||||
yarn install --production --pure-lockfile
|
yarn install --production --pure-lockfile
|
||||||
cp ~/peertube-latest/config/default.yaml ~/config/default.yaml
|
cp /var/www/peertube/peertube-latest/config/default.yaml /var/www/peertube/config/default.yaml
|
||||||
diff ~/peertube-latest/config/production.yaml.example ~/config/production.yaml
|
|
||||||
|
|
||||||
exit 0
|
exit 0
|
||||||
|
|
|
@ -289,19 +289,17 @@ $ cd /var/www/peertube/peertube-latest && NODE_CONFIG_DIR=/var/www/peertube/conf
|
||||||
```
|
```
|
||||||
|
|
||||||
## Upgrade
|
## Upgrade
|
||||||
#### Auto
|
|
||||||
|
|
||||||
Via the bash Script :
|
#### Auto (minor versions only)
|
||||||
|
|
||||||
```
|
```
|
||||||
$ su - peertube
|
$ cd /var/www/peertube/peertube-latest/scripts && sudo -u peertube ./upgrade.sh
|
||||||
$ cd scripts && ./upgrade.sh
|
$ diff /var/www/peertube/versions/peertube-${VERSION}/config/production.yaml.example /var/www/peertube/config/production.yaml
|
||||||
$ exit
|
$ sudo systemctl restart peertube && sudo journalctl -fu peertube
|
||||||
$ systemctl restart peertube
|
|
||||||
$ systemctl status peertube
|
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Manuel
|
#### Manually
|
||||||
|
|
||||||
Make a SQL backup
|
Make a SQL backup
|
||||||
|
|
||||||
```
|
```
|
||||||
|
@ -336,7 +334,7 @@ Copy new configuration defaults values and update your configuration file:
|
||||||
|
|
||||||
```
|
```
|
||||||
$ sudo -u peertube cp /var/www/peertube/versions/peertube-${VERSION}/config/default.yaml /var/www/peertube/config/default.yaml
|
$ sudo -u peertube cp /var/www/peertube/versions/peertube-${VERSION}/config/default.yaml /var/www/peertube/config/default.yaml
|
||||||
$ diff /var/www/peertube/versions/peertube-${VERSION}/config//production.yaml.example /var/www/peertube/config/production.yaml
|
$ diff /var/www/peertube/versions/peertube-${VERSION}/config/production.yaml.example /var/www/peertube/config/production.yaml
|
||||||
```
|
```
|
||||||
|
|
||||||
Change the link to point to the latest version:
|
Change the link to point to the latest version:
|
||||||
|
|
Loading…
Reference in New Issue