protected function configure() {
$this
->setName('db:convert-type')
- ->setDescription('Convert the ownCloud database to the newly configured one')
+ ->setDescription('Convert the Nextcloud database to the newly configured one')
->addArgument(
'type',
InputArgument::REQUIRED,
return self::ERROR_SUCCESS;
} else if($this->config->getSystemValue('maintenance', false)) {
- //Possible scenario: ownCloud core is updated but an app failed
- $output->writeln('<warning>ownCloud is in maintenance mode</warning>');
+ //Possible scenario: Nextcloud core is updated but an app failed
+ $output->writeln('<warning>Nextcloud is in maintenance mode</warning>');
$output->write('<comment>Maybe an upgrade is already in process. Please check the '
. 'logfile (data/nextcloud.log). If you want to re-run the '
. 'upgrade procedure, remove the "maintenance mode" from '
, true);
return self::ERROR_MAINTENANCE_MODE;
} else {
- $output->writeln('<info>ownCloud is already latest version</info>');
+ $output->writeln('<info>Nextcloud is already latest version</info>');
return self::ERROR_UP_TO_DATE;
}
}