summaryrefslogtreecommitdiffstats
path: root/os-plugins/plugins/vmware/OpenSLX/OSPlugin/vmware.pm
diff options
context:
space:
mode:
authorMichael Janczyk2009-03-12 14:51:43 +0100
committerMichael Janczyk2009-03-12 14:51:43 +0100
commit95313a95674173c7b8afda4e8fcf25e24f2df91b (patch)
treec9f4006817f513e41c68a80a3bb658e964d219e0 /os-plugins/plugins/vmware/OpenSLX/OSPlugin/vmware.pm
parentBrush ups ... (diff)
downloadcore-95313a95674173c7b8afda4e8fcf25e24f2df91b.tar.gz
core-95313a95674173c7b8afda4e8fcf25e24f2df91b.tar.xz
core-95313a95674173c7b8afda4e8fcf25e24f2df91b.zip
removed copying of obsolete and non-existing scripts
git-svn-id: http://svn.openslx.org/svn/openslx/openslx/trunk@2729 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'os-plugins/plugins/vmware/OpenSLX/OSPlugin/vmware.pm')
-rw-r--r--os-plugins/plugins/vmware/OpenSLX/OSPlugin/vmware.pm16
1 files changed, 4 insertions, 12 deletions
diff --git a/os-plugins/plugins/vmware/OpenSLX/OSPlugin/vmware.pm b/os-plugins/plugins/vmware/OpenSLX/OSPlugin/vmware.pm
index a930a4e6..ecc2626d 100644
--- a/os-plugins/plugins/vmware/OpenSLX/OSPlugin/vmware.pm
+++ b/os-plugins/plugins/vmware/OpenSLX/OSPlugin/vmware.pm
@@ -539,7 +539,7 @@ sub _localInstallation
$vmbuildversion = $versionhash{vmbuildversion};
## Copy needed files
- my @files = qw(nvram.5.0);
+ my @files = qw(nvram);
foreach my $file (@files) {
copyFile("$pluginFilesPath/$file", "$installationPath");
}
@@ -584,14 +584,11 @@ sub _vmpl2Installation {
## Copy needed files
# copy 'normal' needed files
- my @files = qw( nvram.5.0 install-vmpl.sh );
+ my @files = qw( nvram install-vmpl.sh );
foreach my $file (@files) {
copyFile("$pluginFilesPath/$file", "$installationPath");
}
- # copy on depending runvmware file
- copyFile("$pluginFilesPath/runvmware-player-v2", "$installationPath", "runvmware");
-
# Install the binarys from given pkgpath
system("/bin/sh /opt/openslx/plugin-repo/$self->{'name'}/$kind/install-vmpl.sh $kind");
@@ -623,14 +620,11 @@ sub _vmpl25Installation {
mkpath($installationPath);
# copy 'normal' needed files
- my @files = qw( nvram.5.0 install-vmpl.sh );
+ my @files = qw( nvram install-vmpl.sh );
foreach my $file (@files) {
copyFile("$pluginFilesPath/$file", "$installationPath");
}
- # copy on depending runvmware file
- copyFile("$pluginFilesPath/runvmware-player-v25", "$installationPath", "runvmware");
-
# Install the binarys from given pkgpath
system("/bin/sh /opt/openslx/plugin-repo/$self->{'name'}/$kind/install-vmpl.sh $kind");
@@ -662,12 +656,10 @@ sub _vmpl1Installation {
mkpath($installationPath);
# copy 'normal' needed files
- my @files = qw( nvram.5.0 install-vmpl.sh );
+ my @files = qw( nvram install-vmpl.sh );
foreach my $file (@files) {
copyFile("$pluginFilesPath/$file", "$installationPath");
}
- # copy on depending runvmware file
- copyFile("$pluginFilesPath/runvmware-player-v1", "$installationPath", "runvmware");
# Download and install the binarys
system("/bin/sh /opt/openslx/plugin-repo/$self->{'name'}/$kind/install-vmpl.sh $kind");