diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-06-03 13:56:17 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-06-03 13:56:17 +0200 |
commit | 739c3f01aa32a4de6f671f72fc9cc216d02972d2 (patch) | |
tree | d0822b073d4170c517558624d1b739be78b25927 /core/command/upgrade.php | |
parent | 69d1e7aaf4ddb85fefa17cb7bd3c57274cc428f4 (diff) | |
parent | 064f5204cc365bcf8c12ef34e6fde92175c9d6fa (diff) | |
download | nextcloud-server-739c3f01aa32a4de6f671f72fc9cc216d02972d2.tar.gz nextcloud-server-739c3f01aa32a4de6f671f72fc9cc216d02972d2.zip |
Merge pull request #16434 from owncloud/persist-maintenance-state
Persist the state of the maintenance after an upgrade
Diffstat (limited to 'core/command/upgrade.php')
-rw-r--r-- | core/command/upgrade.php | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/core/command/upgrade.php b/core/command/upgrade.php index 85bd430db58..2d6394fea85 100644 --- a/core/command/upgrade.php +++ b/core/command/upgrade.php @@ -118,12 +118,17 @@ class Upgrade extends Command { $updater->setUpdateStepEnabled($updateStepEnabled); $updater->setSkip3rdPartyAppsDisable($skip3rdPartyAppsDisable); - $updater->listen('\OC\Updater', 'maintenanceStart', function () use($output) { + $updater->listen('\OC\Updater', 'maintenanceEnabled', function () use($output) { $output->writeln('<info>Turned on maintenance mode</info>'); }); - $updater->listen('\OC\Updater', 'maintenanceEnd', + $updater->listen('\OC\Updater', 'maintenanceDisabled', function () use($output) { + $output->writeln('<info>Turned off maintenance mode</info>'); + }); + $updater->listen('\OC\Updater', 'maintenanceActive', function () use($output) { + $output->writeln('<info>Maintenance mode is kept active</info>'); + }); + $updater->listen('\OC\Updater', 'updateEnd', function () use($output, $updateStepEnabled, $self) { - $output->writeln('<info>Turned off maintenance mode</info>'); $mode = $updateStepEnabled ? 'Update' : 'Update simulation'; $status = $self->upgradeFailed ? 'failed' : 'successful'; $message = "<info>$mode $status</info>"; |