summaryrefslogtreecommitdiffstats
path: root/os-plugins/plugins/vmware/OpenSLX/OSPlugin/vmware.pm
diff options
context:
space:
mode:
authorVolker Uhrig2008-02-20 19:05:19 +0100
committerVolker Uhrig2008-02-20 19:05:19 +0100
commitef844b368377ccbb72d3d8aecbd0c919c2504adc (patch)
treedcc5cd5e3bb5b93227427a292b1c3a00de9ce7e0 /os-plugins/plugins/vmware/OpenSLX/OSPlugin/vmware.pm
parent* fixed potential use of uninitialized value (diff)
downloadcore-ef844b368377ccbb72d3d8aecbd0c919c2504adc.tar.gz
core-ef844b368377ccbb72d3d8aecbd0c919c2504adc.tar.xz
core-ef844b368377ccbb72d3d8aecbd0c919c2504adc.zip
* Cleaned out some deprecated vmware commands
* We won't build vmware modules in initramfs anymore. They will be on the system anyway. This avoids also issues with depmod. * Directory/URI of the images moved into the vmware plugin git-svn-id: http://svn.openslx.org/svn/openslx/trunk@1565 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.pm21
1 files changed, 11 insertions, 10 deletions
diff --git a/os-plugins/plugins/vmware/OpenSLX/OSPlugin/vmware.pm b/os-plugins/plugins/vmware/OpenSLX/OSPlugin/vmware.pm
index 048f0f38..91ff3289 100644
--- a/os-plugins/plugins/vmware/OpenSLX/OSPlugin/vmware.pm
+++ b/os-plugins/plugins/vmware/OpenSLX/OSPlugin/vmware.pm
@@ -75,6 +75,17 @@ sub getAttrInfo
content_descr => 'allowed range is from 01-99',
default => 70,
},
+ # attribute 'imagesrc' defines where we can find vmware images
+ 'vmware::imagessrc' => {
+ applies_to_systems => 1,
+ applies_to_clients => 1,
+ description => unshiftHereDoc(<<' End-of-Here'),
+ Where do we store our vmware images? NFS? Filesystem?
+ End-of-Here
+ content_regex => qr{^\d\d$},
+ content_descr => 'Allowed values: path or URI',
+ default => "",
+ },
};
}
@@ -102,14 +113,4 @@ sub preInstallationPhase
}
}
-
-sub suggestAdditionalKernelModules
-{
- my $self = shift;
- my $makeInitRamFSEngine = shift;
-
- # simply suggest these and see where we go from there (what is vmblock?)
- return qw( vmmon vmnet vmblock );
-}
-
1;