diff options
author | John Livingston <git@john-livingston.fr> | 2022-06-09 15:10:52 +0200 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2022-06-13 15:59:22 +0200 |
commit | 7f6ff4622220443a674eca1d67e74acb80b26798 (patch) | |
tree | 34b1b9550160e591ada46bc1ec22638961baea7b | |
parent | 92148a7a396e9bfb8e46a125cc2e31298fd0fcd5 (diff) | |
download | PeerTube-7f6ff4622220443a674eca1d67e74acb80b26798.tar.gz PeerTube-7f6ff4622220443a674eca1d67e74acb80b26798.tar.zst PeerTube-7f6ff4622220443a674eca1d67e74acb80b26798.zip |
Implement 5036: more readable diff on configuration file when upgrading.
-rwxr-xr-x | scripts/upgrade.sh | 3 | ||||
-rw-r--r-- | support/doc/production.md | 9 |
2 files changed, 11 insertions, 1 deletions
diff --git a/scripts/upgrade.sh b/scripts/upgrade.sh index 9c17aecb8..e70576285 100755 --- a/scripts/upgrade.sh +++ b/scripts/upgrade.sh | |||
@@ -78,7 +78,8 @@ ln -s "$PEERTUBE_PATH/versions/peertube-${VERSION}" $PEERTUBE_PATH/peertube-late | |||
78 | cp $PEERTUBE_PATH/peertube-latest/config/default.yaml $PEERTUBE_PATH/config/default.yaml | 78 | cp $PEERTUBE_PATH/peertube-latest/config/default.yaml $PEERTUBE_PATH/config/default.yaml |
79 | 79 | ||
80 | echo "Differences in configuration files..." | 80 | echo "Differences in configuration files..." |
81 | diff -u $PEERTUBE_PATH/config/production.yaml "$PEERTUBE_PATH/versions/peertube-${VERSION}/config/production.yaml.example" | 81 | cd $PEERTUBE_PATH/versions |
82 | diff -u "$(ls --sort=t | head -2 | tail -1)/config/production.yaml.example" "$(ls --sort=t | head -1)/config/production.yaml.example" | ||
82 | 83 | ||
83 | echo "" | 84 | echo "" |
84 | echo "===========================================" | 85 | echo "===========================================" |
diff --git a/support/doc/production.md b/support/doc/production.md index 6d7744b1f..ea0a98395 100644 --- a/support/doc/production.md +++ b/support/doc/production.md | |||
@@ -339,6 +339,15 @@ $ cd /var/www/peertube && \ | |||
339 | sudo -u peertube ln -s versions/peertube-${VERSION} ./peertube-latest | 339 | sudo -u peertube ln -s versions/peertube-${VERSION} ./peertube-latest |
340 | ``` | 340 | ``` |
341 | 341 | ||
342 | ### Configuration | ||
343 | |||
344 | You can check for configuration changes, and report them in your `config/production.yaml` file: | ||
345 | |||
346 | ```bash | ||
347 | $ cd /var/www/peertube/versions | ||
348 | $ diff -u "$(ls --sort=t | head -2 | tail -1)/config/production.yaml.example" "$(ls --sort=t | head -1)/config/production.yaml.example" | ||
349 | ``` | ||
350 | |||
342 | ### nginx | 351 | ### nginx |
343 | 352 | ||
344 | Check changes in nginx configuration: | 353 | Check changes in nginx configuration: |