mirror of
https://github.com/YunoHost-Apps/nextcloud_ynh.git
synced 2024-09-03 19:55:57 +02:00
During upgrade, the backup of config.php should occurr before the maintenance mode is set to on, otherwise the restored version will have maintenance=true and appear as manually modified..
This commit is contained in:
parent
e1651583be
commit
10c7976d05
1 changed files with 3 additions and 3 deletions
|
@ -221,12 +221,12 @@ EOF
|
||||||
# Install the next nextcloud version in $tmpdir
|
# Install the next nextcloud version in $tmpdir
|
||||||
ynh_setup_source --dest_dir="$tmpdir"
|
ynh_setup_source --dest_dir="$tmpdir"
|
||||||
|
|
||||||
# Enable maintenance mode
|
|
||||||
exec_occ maintenance:mode --on
|
|
||||||
|
|
||||||
# Backup the config file in the temp dir
|
# Backup the config file in the temp dir
|
||||||
cp -a "$install_dir/config/config.php" "$tmpdir/config/config.php"
|
cp -a "$install_dir/config/config.php" "$tmpdir/config/config.php"
|
||||||
|
|
||||||
|
# Enable maintenance mode
|
||||||
|
exec_occ maintenance:mode --on
|
||||||
|
|
||||||
# Backup 3rd party applications from the current Nextcloud
|
# Backup 3rd party applications from the current Nextcloud
|
||||||
# But do not overwrite if there is any upgrade
|
# But do not overwrite if there is any upgrade
|
||||||
# (apps directory already exists in Nextcloud archive)
|
# (apps directory already exists in Nextcloud archive)
|
||||||
|
|
Loading…
Add table
Reference in a new issue