From aebf90c525183cf8a93d3f219aaeb26816b970bb Mon Sep 17 00:00:00 2001 From: Oliver Tappe Date: Wed, 11 Feb 2009 19:15:50 +0000 Subject: * The xxx::active attribute of every plugin applies to clients, too. This could be used to test a specific plugin with one client before activating it for all others. Some plugins specify seemingly strange 'applies-to-clients'-values for their attributes, but I have not touched those, since I do not really know what they do. git-svn-id: http://svn.openslx.org/svn/openslx/openslx/trunk@2573 95ad53e4-c205-0410-b2fa-d234c58c8868 --- os-plugins/plugins/dropbear/OpenSLX/OSPlugin/dropbear.pm | 2 +- os-plugins/plugins/example/OpenSLX/OSPlugin/example.pm | 4 ++-- os-plugins/plugins/qemukvm/OpenSLX/OSPlugin/qemukvm.pm | 2 +- os-plugins/plugins/vmware/OpenSLX/OSPlugin/vmware.pm | 2 +- os-plugins/plugins/wlanboot/OpenSLX/OSPlugin/wlanboot.pm | 2 +- os-plugins/plugins/x11vnc/OpenSLX/OSPlugin/x11vnc.pm | 2 +- os-plugins/plugins/xserver/OpenSLX/OSPlugin/xserver.pm | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) (limited to 'os-plugins/plugins') diff --git a/os-plugins/plugins/dropbear/OpenSLX/OSPlugin/dropbear.pm b/os-plugins/plugins/dropbear/OpenSLX/OSPlugin/dropbear.pm index a613b48e..fc1b96f8 100644 --- a/os-plugins/plugins/dropbear/OpenSLX/OSPlugin/dropbear.pm +++ b/os-plugins/plugins/dropbear/OpenSLX/OSPlugin/dropbear.pm @@ -61,7 +61,7 @@ sub getAttrInfo # attribute 'active' is mandatory for all plugins 'dropbear::active' => { applies_to_systems => 1, - applies_to_clients => 0, + applies_to_clients => 1, description => unshiftHereDoc(<<' End-of-Here'), should the 'dropbear'-plugin be executed during boot? End-of-Here diff --git a/os-plugins/plugins/example/OpenSLX/OSPlugin/example.pm b/os-plugins/plugins/example/OpenSLX/OSPlugin/example.pm index 6228ed5d..79f0ba48 100644 --- a/os-plugins/plugins/example/OpenSLX/OSPlugin/example.pm +++ b/os-plugins/plugins/example/OpenSLX/OSPlugin/example.pm @@ -61,7 +61,7 @@ sub getAttrInfo # attribute 'active' is mandatory for all plugins 'example::active' => { applies_to_systems => 1, - applies_to_clients => 0, + applies_to_clients => 1, description => unshiftHereDoc(<<' End-of-Here'), should the 'example'-plugin be executed during boot? End-of-Here @@ -73,7 +73,7 @@ sub getAttrInfo # plugin specific attributes start here ... 'example::preferred_side' => { applies_to_systems => 1, - applies_to_clients => 0, + applies_to_clients => 1, description => unshiftHereDoc(<<' End-of-Here'), determines to which side you have to tilt your head in order to read the smiley diff --git a/os-plugins/plugins/qemukvm/OpenSLX/OSPlugin/qemukvm.pm b/os-plugins/plugins/qemukvm/OpenSLX/OSPlugin/qemukvm.pm index 80b14761..4fad39d4 100644 --- a/os-plugins/plugins/qemukvm/OpenSLX/OSPlugin/qemukvm.pm +++ b/os-plugins/plugins/qemukvm/OpenSLX/OSPlugin/qemukvm.pm @@ -61,7 +61,7 @@ sub getAttrInfo # attribute 'active' is mandatory for all plugins 'qemukvm::active' => { applies_to_systems => 1, - applies_to_clients => 0, + applies_to_clients => 1, description => unshiftHereDoc(<<' End-of-Here'), should the 'qemukvm'-plugin be executed during boot? End-of-Here diff --git a/os-plugins/plugins/vmware/OpenSLX/OSPlugin/vmware.pm b/os-plugins/plugins/vmware/OpenSLX/OSPlugin/vmware.pm index 5d85d684..9e592fe6 100644 --- a/os-plugins/plugins/vmware/OpenSLX/OSPlugin/vmware.pm +++ b/os-plugins/plugins/vmware/OpenSLX/OSPlugin/vmware.pm @@ -63,7 +63,7 @@ sub getAttrInfo # attribute 'active' is mandatory for all plugins 'vmware::active' => { applies_to_systems => 1, - applies_to_clients => 0, + applies_to_clients => 1, description => unshiftHereDoc(<<' End-of-Here'), should the 'vmware'-plugin be executed during boot? End-of-Here diff --git a/os-plugins/plugins/wlanboot/OpenSLX/OSPlugin/wlanboot.pm b/os-plugins/plugins/wlanboot/OpenSLX/OSPlugin/wlanboot.pm index cc01f07c..533be865 100644 --- a/os-plugins/plugins/wlanboot/OpenSLX/OSPlugin/wlanboot.pm +++ b/os-plugins/plugins/wlanboot/OpenSLX/OSPlugin/wlanboot.pm @@ -63,7 +63,7 @@ sub getAttrInfo # attribute 'active' is mandatory for all plugins 'wlanboot::active' => { applies_to_systems => 1, - applies_to_clients => 0, + applies_to_clients => 1, description => unshiftHereDoc(<<' End-of-Here'), should the 'wlanboot'-plugin be executed during boot? End-of-Here diff --git a/os-plugins/plugins/x11vnc/OpenSLX/OSPlugin/x11vnc.pm b/os-plugins/plugins/x11vnc/OpenSLX/OSPlugin/x11vnc.pm index d3c50e84..fe06648c 100644 --- a/os-plugins/plugins/x11vnc/OpenSLX/OSPlugin/x11vnc.pm +++ b/os-plugins/plugins/x11vnc/OpenSLX/OSPlugin/x11vnc.pm @@ -49,7 +49,7 @@ sub getAttrInfo return { 'x11vnc::active' => { applies_to_systems => 1, - applies_to_clients => 0, + applies_to_clients => 1, description => unshiftHereDoc(<<' End-of-Here'), should the 'x11vnc' plugin be executed during boot? End-of-Here diff --git a/os-plugins/plugins/xserver/OpenSLX/OSPlugin/xserver.pm b/os-plugins/plugins/xserver/OpenSLX/OSPlugin/xserver.pm index 4940cf31..d8bef737 100644 --- a/os-plugins/plugins/xserver/OpenSLX/OSPlugin/xserver.pm +++ b/os-plugins/plugins/xserver/OpenSLX/OSPlugin/xserver.pm @@ -66,7 +66,7 @@ sub getAttrInfo # attribute 'active' is mandatory for all plugins 'xserver::active' => { applies_to_systems => 1, - applies_to_clients => 0, + applies_to_clients => 1, description => unshiftHereDoc(<<' End-of-Here'), should the 'xserver'-plugin be executed during boot? End-of-Here -- cgit v1.2.3-55-g7522