summaryrefslogtreecommitdiffstats
path: root/installer/slxos-setup
diff options
context:
space:
mode:
authorOliver Tappe2008-03-23 15:27:51 +0100
committerOliver Tappe2008-03-23 15:27:51 +0100
commit44cc0a975a730c5bb48b60b6c75791614f8671f4 (patch)
treed106a3e4e712b51d6c3bbce43d715b7fddff503d /installer/slxos-setup
parentFurther improvements to vmware plugin ... (diff)
downloadcore-44cc0a975a730c5bb48b60b6c75791614f8671f4.tar.gz
core-44cc0a975a730c5bb48b60b6c75791614f8671f4.tar.xz
core-44cc0a975a730c5bb48b60b6c75791614f8671f4.zip
* no longer asks for root password upon install (will be done as a plugin later)
git-svn-id: http://svn.openslx.org/svn/openslx/openslx/trunk@1675 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'installer/slxos-setup')
-rwxr-xr-xinstaller/slxos-setup3
1 files changed, 1 insertions, 2 deletions
diff --git a/installer/slxos-setup b/installer/slxos-setup
index d46030a7..5e9bf650 100755
--- a/installer/slxos-setup
+++ b/installer/slxos-setup
@@ -115,8 +115,7 @@ if ($action =~ m[^import]i) {
chdir($FindBin::RealBin)
or die _tr("can't chdir to script-path <%> (%s)", $FindBin::RealBin, $!);
$engine->initialize($vendorOSName, 'install');
- my $rootPassword = readPassword("root-password for new system> ");
- $engine->installVendorOS({ 'root-password' => $rootPassword });
+ $engine->installVendorOS();
} elsif ($action =~ m[^clone]i) {
my $source = shift @ARGV;
my $vendorOSName = shift @ARGV;