diff options
author | Oliver Tappe | 2008-06-07 16:55:27 +0200 |
---|---|---|
committer | Oliver Tappe | 2008-06-07 16:55:27 +0200 |
commit | 758d512cb1a5ca499a44e92354067cdf6a268b89 (patch) | |
tree | 0c38972188428c99f641fd971a3216eaa8e94348 | |
parent | Removed - integrated into busybox. (diff) | |
download | core-758d512cb1a5ca499a44e92354067cdf6a268b89.tar.gz core-758d512cb1a5ca499a44e92354067cdf6a268b89.tar.xz core-758d512cb1a5ca499a44e92354067cdf6a268b89.zip |
* cosmetics
git-svn-id: http://svn.openslx.org/svn/openslx/openslx/trunk@1857 95ad53e4-c205-0410-b2fa-d234c58c8868
-rw-r--r-- | installer/OpenSLX/OSSetup/Distro/Suse.pm | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/installer/OpenSLX/OSSetup/Distro/Suse.pm b/installer/OpenSLX/OSSetup/Distro/Suse.pm index 97da4f70..82ab97c5 100644 --- a/installer/OpenSLX/OSSetup/Distro/Suse.pm +++ b/installer/OpenSLX/OSSetup/Distro/Suse.pm @@ -42,7 +42,7 @@ sub initialize if ($engine->{'action-type'} eq 'install') { # Inform SUSE RPMs that we're performing an installation - this is # only important for installations taking place in stage 1c: - $ENV{YAST_IS_RUNNING} = "instsys"; + $ENV{YAST_IS_RUNNING} = "instsys"; } return; @@ -53,8 +53,10 @@ sub fixPrerequiredFiles my $self = shift; my $stage1cDir = shift; - chown(0, 0, "$stage1cDir/etc/group", "$stage1cDir/etc/passwd", - "$stage1cDir/etc/shadow"); + chown( + 0, 0, "$stage1cDir/etc/group", "$stage1cDir/etc/passwd", + "$stage1cDir/etc/shadow" + ); return; } |