summaryrefslogtreecommitdiffstats
path: root/core/Command
diff options
context:
space:
mode:
authorDaniel Kesselberg <mail@danielkesselberg.de>2018-09-13 14:37:06 +0200
committerRoeland Jago Douma <roeland@famdouma.nl>2018-10-02 22:24:30 +0200
commit6c805ec9baf4aa875cfcbffe5fa5384caff7b7e7 (patch)
tree54538ef6b6aec142423dfc71c945c4dda57c2553 /core/Command
parent6b730b4c478bc4f55a89fd7d6a7c2715e2e5b829 (diff)
downloadnextcloud-server-6c805ec9baf4aa875cfcbffe5fa5384caff7b7e7.tar.gz
nextcloud-server-6c805ec9baf4aa875cfcbffe5fa5384caff7b7e7.zip
Add --admin-email to cli installer
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
Diffstat (limited to 'core/Command')
-rw-r--r--core/Command/Maintenance/Install.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/core/Command/Maintenance/Install.php b/core/Command/Maintenance/Install.php
index 262def99c5f..3e6ee2a463f 100644
--- a/core/Command/Maintenance/Install.php
+++ b/core/Command/Maintenance/Install.php
@@ -67,6 +67,7 @@ class Install extends Command {
->addOption('database-table-space', null, InputOption::VALUE_OPTIONAL, 'Table space of the database (oci only)', null)
->addOption('admin-user', null, InputOption::VALUE_REQUIRED, 'User name of the admin account', 'admin')
->addOption('admin-pass', null, InputOption::VALUE_REQUIRED, 'Password of the admin account')
+ ->addOption('admin-email', null, InputOption::VALUE_OPTIONAL, 'E-Mail of the admin account')
->addOption('data-dir', null, InputOption::VALUE_REQUIRED, 'Path to data directory', \OC::$SERVERROOT."/data");
}
@@ -141,6 +142,7 @@ class Install extends Command {
}
$adminLogin = $input->getOption('admin-user');
$adminPassword = $input->getOption('admin-pass');
+ $adminEmail = $input->getOption('admin-email');
$dataDir = $input->getOption('data-dir');
if ($db !== 'sqlite') {
@@ -179,6 +181,7 @@ class Install extends Command {
'dbtableprefix' => $dbTablePrefix,
'adminlogin' => $adminLogin,
'adminpass' => $adminPassword,
+ 'adminemail' => $adminEmail,
'directory' => $dataDir
];
if ($db === 'oci') {