diff --git a/lib/Froxlor/Cli/InstallCommand.php b/lib/Froxlor/Cli/InstallCommand.php index be1415a5..a0a45a77 100644 --- a/lib/Froxlor/Cli/InstallCommand.php +++ b/lib/Froxlor/Cli/InstallCommand.php @@ -182,6 +182,7 @@ final class InstallCommand extends Command // do actual install with data from $this->formfielddata $core = new Core($this->formfielddata); $core->doInstall(); + $core->createUserdataConf(); } return $this->showStep(++$step, $extended); break; @@ -195,7 +196,7 @@ final class InstallCommand extends Command $cmdfield['value'] ]); if ($this->io->confirm('Execute command now?', false)) { - exec($cmdfield['value']); + passthru($cmdfield['value']); } break; }