mdtrooper 0f04a5693f 2013-09-05 Miguel de Dios <miguel.dedios@artica.es>
* lib/PandoraFMS/PluginServer.pm: fixed the lost decode html
	entities for the value in the macros.
	
	* util/plugin/dummy_plugin.pl: added tiny plugin server with only
	purpose to testing.




git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@8744 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-09-05 09:57:40 +00:00

16 lines
290 B
Perl
Executable File

#!/usr/bin/perl
use strict;
use warnings;
use Data::Dumper;
open STDOUT, '>', "/var/log/pandora/pandora_server.log";
print "------------INIT DUMMY PLUGIN------------------\n";
print Dumper(@ARGV) . "\n";
print "------------END DUMMY PLUGIN------------------\n";
close(STDOUT);
exit 1;