summaryrefslogtreecommitdiffstats
path: root/os-plugins/plugins/vmchooser/OpenSLX/OSPlugin/vmchooser.pm
diff options
context:
space:
mode:
authorBastian Wissler2008-04-11 21:37:35 +0200
committerBastian Wissler2008-04-11 21:37:35 +0200
commitac0370a74c1deab0aefb15a685c8d86deab9d4b5 (patch)
treee0c517874db5bd0e1917b41ae58b22103da7fcd2 /os-plugins/plugins/vmchooser/OpenSLX/OSPlugin/vmchooser.pm
parentCheckin of vmchooser plugin fixes (installation) on behalf of bw21 ... (diff)
downloadcore-ac0370a74c1deab0aefb15a685c8d86deab9d4b5.tar.gz
core-ac0370a74c1deab0aefb15a685c8d86deab9d4b5.tar.xz
core-ac0370a74c1deab0aefb15a685c8d86deab9d4b5.zip
More complete version of vmchooser.
git-svn-id: http://svn.openslx.org/svn/openslx/openslx/trunk@1737 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'os-plugins/plugins/vmchooser/OpenSLX/OSPlugin/vmchooser.pm')
-rw-r--r--os-plugins/plugins/vmchooser/OpenSLX/OSPlugin/vmchooser.pm7
1 files changed, 2 insertions, 5 deletions
diff --git a/os-plugins/plugins/vmchooser/OpenSLX/OSPlugin/vmchooser.pm b/os-plugins/plugins/vmchooser/OpenSLX/OSPlugin/vmchooser.pm
index 48ecaade..25272af6 100644
--- a/os-plugins/plugins/vmchooser/OpenSLX/OSPlugin/vmchooser.pm
+++ b/os-plugins/plugins/vmchooser/OpenSLX/OSPlugin/vmchooser.pm
@@ -88,18 +88,15 @@ sub installationPhase
# Some plugins have to copy files from their plugin folder into the
# vendor-OS. In order to make this possible while chrooted, the host's
# /opt/openslx folder will be mounted to /mnt/openslx in the vendor-OS.
- # So each plugin could copy some files like this:
- #
-
# get our own name:
- my $pluginName = $self->{'name'};
+ #my $pluginName = $self->{'name'};
# get our own base path:
my $pluginBasePath = "/mnt/openslx/lib/plugins/$pluginName/files";
# copy all needed files now:
- system( "bash") ;
+ #system( "bash") ;
foreach my $file ( qw( vmchooser ) ) {
copyFile("$pluginBasePath/$file", "$pluginRepositoryPath/");
}