summaryrefslogtreecommitdiffstats
path: root/os-plugins/plugins/vmware/OpenSLX/OSPlugin/vmware.pm
diff options
context:
space:
mode:
authorDirk von Suchodoletz2008-03-16 20:50:31 +0100
committerDirk von Suchodoletz2008-03-16 20:50:31 +0100
commitff1dbeab165bdc5b5f3c8c146896551e78f4ff99 (patch)
tree31caab6debd68219a2026b6fa57890d00d12eb36 /os-plugins/plugins/vmware/OpenSLX/OSPlugin/vmware.pm
parentMoving setup of client mode (variable desktop::kind) and displaymanager (diff)
downloadcore-ff1dbeab165bdc5b5f3c8c146896551e78f4ff99.tar.gz
core-ff1dbeab165bdc5b5f3c8c146896551e78f4ff99.tar.xz
core-ff1dbeab165bdc5b5f3c8c146896551e78f4ff99.zip
Working on the vmware plugin (see comments within the files ...)
git-svn-id: http://svn.openslx.org/svn/openslx/openslx/trunk@1637 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.pm40
1 files changed, 39 insertions, 1 deletions
diff --git a/os-plugins/plugins/vmware/OpenSLX/OSPlugin/vmware.pm b/os-plugins/plugins/vmware/OpenSLX/OSPlugin/vmware.pm
index 28193dff..ab975506 100644
--- a/os-plugins/plugins/vmware/OpenSLX/OSPlugin/vmware.pm
+++ b/os-plugins/plugins/vmware/OpenSLX/OSPlugin/vmware.pm
@@ -47,7 +47,8 @@ sub getInfo
}
sub getAttrInfo
-{ # returns a hash-ref with information about all attributes supported
+{
+ # returns a hash-ref with information about all attributes supported
# by this specific plugin
my $self = shift;
@@ -87,6 +88,43 @@ sub getAttrInfo
content_descr => 'Allowed values: path or URI',
default => '',
},
+ # attribute 'bridge' defines if bridged network mode should be
+ # switched on
+ 'vmware::bridge' => {
+ applies_to_systems => 1,
+ applies_to_clients => 1,
+ description => unshiftHereDoc(<<' End-of-Here'),
+ Should the bridging (direct access of the vmware clients
+ to the ethernet the host is connected to) be enabled
+ End-of-Here
+ content_descr => 'Allowed values: 0 or 1',
+ default => '',
+ },
+ # attribute 'vmnet1' defines if the host connection network mode
+ # should be switched on and NAT should be enabled
+ 'vmware::vmnet1' => {
+ applies_to_systems => 1,
+ applies_to_clients => 1,
+ description => unshiftHereDoc(<<' End-of-Here'),
+ Format ServerIP/Netprefix without NAT
+ Format ServerIP/Netprefix,NAT enables NAT/Masquerading
+ End-of-Here
+ content_descr => 'Allowed value: IP/Prefix[,NAT]',
+ default => '',
+ },
+ # attribute 'vmnet8' defines if vmware specific NATed network mode
+ # should be switched on
+ 'vmware::vmnet8' => {
+ applies_to_systems => 1,
+ applies_to_clients => 1,
+ description => unshiftHereDoc(<<' End-of-Here'),
+ Format ServerIP/Netprefix
+ End-of-Here
+ content_descr => 'Allowed value: IP/Prefix',
+ default => '',
+ },
+ # is to be discussed how to handle this - there is no single set of
+ # vmware files!!
# attribute 'binaries' defines whether or not VMware binaries shall
# be provided (by downloading them).
'vmware::binaries' => {