]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - scripts/upgrade.sh
using "diff -u", for a clearer display
[github/Chocobozzz/PeerTube.git] / scripts / upgrade.sh
CommitLineData
0e4ffb4b 1#!/bin/sh
64586951 2
0e4ffb4b 3set -eu
64586951 4
b4e5942c
JJ
5PEERTUBE_PATH=${1:-/var/www/peertube/}
6
7if [ ! -e "$PEERTUBE_PATH" ]; then
8 echo "Error - path \"$PEERTUBE_PATH\" wasn't found"
9 echo ""
10 echo "If peertube was installed in another path, you can specify it with"
11 echo " ./upgrade.sh <PATH>"
12 exit 1
13fi
14
15if [ ! -e "$PEERTUBE_PATH/versions" -o ! -e "$PEERTUBE_PATH/config/production.yaml" ]; then
16 echo "Error - Couldn't find peertube installation in \"$PEERTUBE_PATH\""
17 echo ""
18 echo "If peertube was installed in another path, you can specify it with"
19 echo " ./upgrade.sh <PATH>"
20 exit 1
21fi
22
ee1219d8 23
64586951 24# Backup database
ee1219d8
JJ
25SQL_BACKUP_PATH="$PEERTUBE_PATH/backup/sql-peertube_prod-$(date +"%Y%m%d-%H%M").bak"
26mkdir -p $PEERTUBE_PATH/backup
64586951
SL
27pg_dump -U peertube -W -h localhost -F c peertube_prod -f "$SQL_BACKUP_PATH"
28
4cd7a103
FA
29# If there is a pre-release, give the user a choice which one to install.
30RELEASE_VERSION=$(curl -s https://api.github.com/repos/chocobozzz/peertube/releases/latest | grep tag_name | cut -d '"' -f 4)
31PRE_RELEASE_VERSION=$(curl -s https://api.github.com/repos/chocobozzz/peertube/releases | grep tag_name | head -1 | cut -d '"' -f 4)
32
33if [ "$RELEASE_VERSION" != "$PRE_RELEASE_VERSION" ]; then
34 echo -e "Which version do you want to install?\n[1] $RELEASE_VERSION (stable) \n[2] $PRE_RELEASE_VERSION (pre-release)"
35 read choice
36 case $choice in
37 [1]* ) VERSION="$RELEASE_VERSION";;
38 [2]* ) VERSION="$PRE_RELEASE_VERSION";;
39 * ) exit;
40 esac
cee43cf1
FA
41else
42 VERSION="$RELEASE_VERSION"
4cd7a103
FA
43fi
44
45echo "Installing Peertube version $VERSION"
ee1219d8
JJ
46wget -q "https://github.com/Chocobozzz/PeerTube/releases/download/${VERSION}/peertube-${VERSION}.zip" -O "$PEERTUBE_PATH/versions/peertube-${VERSION}.zip"
47cd $PEERTUBE_PATH/versions
0e4ffb4b
LA
48unzip -o "peertube-${VERSION}.zip"
49rm -f "peertube-${VERSION}.zip"
64586951
SL
50
51# Upgrade Scripts
ee1219d8
JJ
52rm -rf $PEERTUBE_PATH/peertube-latest
53ln -s "$PEERTUBE_PATH/versions/peertube-${VERSION}" $PEERTUBE_PATH/peertube-latest
54cd $PEERTUBE_PATH/peertube-latest
64586951 55yarn install --production --pure-lockfile
ee1219d8 56cp $PEERTUBE_PATH/peertube-latest/config/default.yaml $PEERTUBE_PATH/config/default.yaml
64586951 57
34333925 58echo "Differences in configuration files..."
bebae342 59diff -u "$PEERTUBE_PATH/versions/peertube-${VERSION}/config/production.yaml.example" $PEERTUBE_PATH/config/production.yaml
34333925 60