setting to skip migration tests by default
* if you install owncloud via package it is not possible to skip migration tests * this also allows to disable migration tests for an instance by default
This commit is contained in:
parent
77942ad38a
commit
2e444e6e37
|
@ -1195,6 +1195,15 @@ $CONFIG = array(
|
||||||
*/
|
*/
|
||||||
'debug' => false,
|
'debug' => false,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Skips the migration test during upgrades
|
||||||
|
*
|
||||||
|
* If this is set to true the migration test are deactivated during upgrade.
|
||||||
|
* This is only recommended in installations where upgrade tests are run in
|
||||||
|
* advance with the same data on a test system.
|
||||||
|
*/
|
||||||
|
'update.skip-migration-test' => false,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This entry is just here to show a warning in case somebody copied the sample
|
* This entry is just here to show a warning in case somebody copied the sample
|
||||||
* configuration. DO NOT ADD THIS SWITCH TO YOUR CONFIGURATION!
|
* configuration. DO NOT ADD THIS SWITCH TO YOUR CONFIGURATION!
|
||||||
|
|
|
@ -50,6 +50,12 @@ if (OC::checkUpgrade(false)) {
|
||||||
\OC::$server->getIntegrityCodeChecker(),
|
\OC::$server->getIntegrityCodeChecker(),
|
||||||
$logger
|
$logger
|
||||||
);
|
);
|
||||||
|
|
||||||
|
if ($config->getSystemValue('update.skip-migration-test', false)) {
|
||||||
|
$eventSource->send('success', (string)$l->t('Migration tests are skipped - "update.skip-migration-test" is activated in config.php'));
|
||||||
|
$updater->setSimulateStepEnabled(false);
|
||||||
|
}
|
||||||
|
|
||||||
$incompatibleApps = [];
|
$incompatibleApps = [];
|
||||||
$disabledThirdPartyApps = [];
|
$disabledThirdPartyApps = [];
|
||||||
|
|
||||||
|
|
|
@ -99,6 +99,12 @@ class Upgrade extends Command {
|
||||||
$updateStepEnabled = true;
|
$updateStepEnabled = true;
|
||||||
$skip3rdPartyAppsDisable = false;
|
$skip3rdPartyAppsDisable = false;
|
||||||
|
|
||||||
|
if ($this->config->getSystemValue('update.skip-migration-test', false)) {
|
||||||
|
$output->writeln(
|
||||||
|
'<info>"skip-migration-test" is activated via config.php</info>'
|
||||||
|
);
|
||||||
|
$simulateStepEnabled = false;
|
||||||
|
}
|
||||||
if ($input->getOption('skip-migration-test')) {
|
if ($input->getOption('skip-migration-test')) {
|
||||||
$simulateStepEnabled = false;
|
$simulateStepEnabled = false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue