mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-08-26 04:08:44 +02:00
* 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
16 lines
290 B
Perl
Executable File
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; |