Code

Setting Globals to true is not needed anymore
authorRuben Kerkhof <ruben@rubenkerkhof.com>
Sun, 1 Mar 2015 14:04:55 +0000 (15:04 +0100)
committerMarc Fournier <marc.fournier@camptocamp.com>
Tue, 3 Mar 2015 22:52:07 +0000 (23:52 +0100)
003c6e86b480 made this happen by default

src/collectd-perl.pod
src/collectd-python.pod

index 669e3f415ef26ef6b196d4e2a15d22127fdf8c78..d5369b4fe2e14678635c65f80641977a14f598dc 100644 (file)
@@ -6,9 +6,7 @@ collectd-perl - Documentation of collectd's C<perl plugin>
 
 =head1 SYNOPSIS
 
-  <LoadPlugin perl>
-    Globals true
-  </LoadPlugin>
+  LoadPlugin perl
   # ...
   <Plugin perl>
     IncludeDir "/path/to/perl/plugins"
index 426a7118c99b8346d38e1d659ff2f4142090c594..b382424b7b0392180219156d18de144f58043b60 100644 (file)
@@ -16,9 +16,7 @@ collectd-python - Documentation of collectd's C<python plugin>
 
 =head1 SYNOPSIS
 
-  <LoadPlugin python>
-    Globals true
-  </LoadPlugin>
+  LoadPlugin python
   # ...
   <Plugin python>
     ModulePath "/path/to/your/python/modules"
@@ -47,12 +45,7 @@ The minimum required Python version is I<2.3>.
 
 =item B<LoadPlugin> I<Plugin>
 
-Loads the Python plugin I<Plugin>. Unlike most other LoadPlugin lines, this one
-should be a block containing the line "Globals true". This will cause collectd
-to export the name of all objects in the Python interpreter for all plugins to
-see. If you don't do this or your platform does not support it, the embedded
-interpreter will start anyway but you won't be able to load certain Python
-modules, e.g. "time".
+Loads the Python plugin I<Plugin>.
 
 =item B<Encoding> I<Name>