diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-01-19 14:00:27 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2018-01-19 14:00:27 +0100 |
commit | c70927eaa0d558575ee63b149005ae9ed17e88df (patch) | |
tree | 077f02eba8ad1f50e332c29a47efd4b09fc6f5ba /core/Command/Upgrade.php | |
parent | fdd7a5325006d5ff023f04fab32627e08393f053 (diff) | |
download | nextcloud-server-c70927eaa0d558575ee63b149005ae9ed17e88df.tar.gz nextcloud-server-c70927eaa0d558575ee63b149005ae9ed17e88df.zip |
Remove not needed 3rdparty app disabling during upgrade for PHP 5.x
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'core/Command/Upgrade.php')
-rw-r--r-- | core/Command/Upgrade.php | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/core/Command/Upgrade.php b/core/Command/Upgrade.php index 2a502dbe921..cadc1f8530c 100644 --- a/core/Command/Upgrade.php +++ b/core/Command/Upgrade.php @@ -76,13 +76,7 @@ class Upgrade extends Command { protected function configure() { $this ->setName('upgrade') - ->setDescription('run upgrade routines after installation of a new release. The release has to be installed before.') - ->addOption( - '--no-app-disable', - null, - InputOption::VALUE_NONE, - 'skips the disable of third party apps' - ); + ->setDescription('run upgrade routines after installation of a new release. The release has to be installed before.'); } /** @@ -108,9 +102,6 @@ class Upgrade extends Command { $this->installer ); - if ($input->getOption('no-app-disable')) { - $updater->setSkip3rdPartyAppsDisable(true); - } $dispatcher = \OC::$server->getEventDispatcher(); $progress = new ProgressBar($output); $progress->setFormat(" %message%\n %current%/%max% [%bar%] %percent:3s%%"); @@ -224,9 +215,6 @@ class Upgrade extends Command { $updater->listen('\OC\Updater', 'incompatibleAppDisabled', function ($app) use($output) { $output->writeln('<comment>Disabled incompatible app: ' . $app . '</comment>'); }); - $updater->listen('\OC\Updater', 'thirdPartyAppDisabled', function ($app) use ($output) { - $output->writeln('<comment>Disabled 3rd-party app: ' . $app . '</comment>'); - }); $updater->listen('\OC\Updater', 'checkAppStoreAppBefore', function ($app) use($output) { $output->writeln('<info>Checking for update of app ' . $app . ' in appstore</info>'); }); |