Skip to content
Snippets Groups Projects
Commit 55840733 authored by Pavel Kácha's avatar Pavel Kácha
Browse files

Changed example paths from specific testing to more standard

parent 889c5f1a
No related branches found
No related tags found
No related merge requests found
...@@ -18,7 +18,7 @@ use strict; ...@@ -18,7 +18,7 @@ use strict;
# This code should developer add into his/her application. # This code should developer add into his/her application.
# Path to warden-client directory # Path to warden-client directory
my $warden_path = '/home/soukal/pokus/warden/warden-client/'; my $warden_path = '/opt/warden-client/';
# Inclusion of warden-client receiving functionality # Inclusion of warden-client receiving functionality
require $warden_path . '/lib/WardenClientCommon.pm'; require $warden_path . '/lib/WardenClientCommon.pm';
......
...@@ -18,7 +18,7 @@ use strict; ...@@ -18,7 +18,7 @@ use strict;
# This code should developer add into his/her application. # This code should developer add into his/her application.
# Path to warden-client directory # Path to warden-client directory
my $warden_path = '/home/soukal/pokus/warden/warden-client/'; my $warden_path = '/opt/warden-client/';
# Inclusion of warden-client receiving functionality # Inclusion of warden-client receiving functionality
require $warden_path . '/lib/WardenClientReceive.pm'; require $warden_path . '/lib/WardenClientReceive.pm';
......
...@@ -36,7 +36,7 @@ use Switch; ...@@ -36,7 +36,7 @@ use Switch;
use strict; use strict;
use DateTime; use DateTime;
my $warden_path = '/home/soukal/pokus/warden-2.2-beta-package/warden-client-2.2-beta-installation-3/dummy/foo/whatever/warden-client'; my $warden_path = '/opt/warden-client';
require $warden_path . '/lib/WardenClientSend.pm'; require $warden_path . '/lib/WardenClientSend.pm';
my $service = "test"; my $service = "test";
......
...@@ -45,7 +45,7 @@ my @event = ($service, $detected, $type, $source_type, $source, ...@@ -45,7 +45,7 @@ my @event = ($service, $detected, $type, $source_type, $source,
# (with corresponding paths appropriately changed). # (with corresponding paths appropriately changed).
# Path to warden-client folder # Path to warden-client folder
my $warden_path = '/home/soukal/pokus/warden/warden-client'; my $warden_path = '/opt/warden-client';
# Inclusion of warden-client sender module # Inclusion of warden-client sender module
require $warden_path . '/lib/WardenClientSend.pm'; require $warden_path . '/lib/WardenClientSend.pm';
......
...@@ -10,17 +10,17 @@ $URI = "https://warden-c.cesnet.cz:443/Warden"; ...@@ -10,17 +10,17 @@ $URI = "https://warden-c.cesnet.cz:443/Warden";
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
# SSL_KEY_FILE - path to client SSL certificate key file # SSL_KEY_FILE - path to client SSL certificate key file
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
$SSL_KEY_FILE = "/home/soukal/client-test/2.0.0_beta/warden-client/etc/warden-c.cesnet.cz.key"; $SSL_KEY_FILE = "/opt/warden-client/etc/warden-client-key.pem";
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
# SSL_CERT_FILE - path to client SSL certificate file # SSL_CERT_FILE - path to client SSL certificate file
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
$SSL_CERT_FILE = "/home/soukal/client-test/2.0.0_beta/warden-client/etc/warden-c.cesnet.cz.pem"; $SSL_CERT_FILE = "/opt/warden-client/etc/warden-client-cert.pem";
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
# SSL_CA_FILE - path to CA certificate file # SSL_CA_FILE - path to CA certificate file
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
$SSL_CA_FILE = "/etc/ssl/certs/tcs-ca-bundle.pem"; $SSL_CA_FILE = "/opt/warden-client/etc/tcs-ca-bundle.pem";
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
# MAX_RCV_EVENTS_LIMIT - maximum number of events the client is allowd to get # MAX_RCV_EVENTS_LIMIT - maximum number of events the client is allowd to get
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment