diff options
author | Andreas Unterkircher <unki@netshadow.at> | 2008-12-05 20:19:35 +0100 |
---|---|---|
committer | Andreas Unterkircher <unki@netshadow.at> | 2008-12-12 18:37:20 +0100 |
commit | 6f71c4ad3b8e28556c2c3d9ae5918f47c09ea519 (patch) | |
tree | cfbf22a0c12673366baf110b2a467d84b857ab6b | |
parent | 2944fad5619542a8c720fc3e47609c2af40ab4d8 (diff) | |
download | exilog-6f71c4ad3b8e28556c2c3d9ae5918f47c09ea519.zip exilog-6f71c4ad3b8e28556c2c3d9ae5918f47c09ea519.tar.gz exilog-6f71c4ad3b8e28556c2c3d9ae5918f47c09ea519.tar.bz2 |
set lib-path to /usr/lib/exilog instead using FindBin module
Signed-off-by: Andreas Unterkircher <unki@netshadow.at>
-rwxr-xr-x | agent/exilog_agent.pl | 4 | ||||
-rwxr-xr-x | agent/exilog_cleanup.pl | 4 | ||||
-rw-r--r-- | lib/exilog_config.pm | 4 |
3 files changed, 3 insertions, 9 deletions
diff --git a/agent/exilog_agent.pl b/agent/exilog_agent.pl index bec39c7..dec5973 100755 --- a/agent/exilog_agent.pl +++ b/agent/exilog_agent.pl @@ -11,9 +11,7 @@ use strict; -use FindBin; -use FindBin qw($RealBin); -use lib "$RealBin/"; +use lib "/usr/lib/exilog/"; use exilog_config; use exilog_util; diff --git a/agent/exilog_cleanup.pl b/agent/exilog_cleanup.pl index 5cc3697..4c0ee16 100755 --- a/agent/exilog_cleanup.pl +++ b/agent/exilog_cleanup.pl @@ -11,9 +11,7 @@ use strict; -use FindBin; -use FindBin qw($RealBin); -use lib "$RealBin/"; +use lib "/usr/lib/exilog/"; use exilog_config; use exilog_sql; diff --git a/lib/exilog_config.pm b/lib/exilog_config.pm index db9eb0d..3f0fc53 100644 --- a/lib/exilog_config.pm +++ b/lib/exilog_config.pm @@ -12,9 +12,7 @@ package exilog_config; use strict; -use FindBin; -use FindBin qw($RealBin); -use lib "$RealBin/"; +use lib "/usr/lib/exilog/"; BEGIN { |