summaryrefslogtreecommitdiffstats
path: root/os-plugins/plugins
diff options
context:
space:
mode:
authorOliver Tappe2009-02-11 20:15:50 +0100
committerOliver Tappe2009-02-11 20:15:50 +0100
commitaebf90c525183cf8a93d3f219aaeb26816b970bb (patch)
treeba7eaf5abb3c13055d2967f490ddd9698e43f2b4 /os-plugins/plugins
parent* removed caching of initramfs files from boot environments, since it does (diff)
downloadcore-aebf90c525183cf8a93d3f219aaeb26816b970bb.tar.gz
core-aebf90c525183cf8a93d3f219aaeb26816b970bb.tar.xz
core-aebf90c525183cf8a93d3f219aaeb26816b970bb.zip
* 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
Diffstat (limited to 'os-plugins/plugins')
-rw-r--r--os-plugins/plugins/dropbear/OpenSLX/OSPlugin/dropbear.pm2
-rw-r--r--os-plugins/plugins/example/OpenSLX/OSPlugin/example.pm4
-rw-r--r--os-plugins/plugins/qemukvm/OpenSLX/OSPlugin/qemukvm.pm2
-rw-r--r--os-plugins/plugins/vmware/OpenSLX/OSPlugin/vmware.pm2
-rw-r--r--os-plugins/plugins/wlanboot/OpenSLX/OSPlugin/wlanboot.pm2
-rw-r--r--os-plugins/plugins/x11vnc/OpenSLX/OSPlugin/x11vnc.pm2
-rw-r--r--os-plugins/plugins/xserver/OpenSLX/OSPlugin/xserver.pm2
7 files changed, 8 insertions, 8 deletions
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