From da34b8c0829026ed99ed6d4f38305e735a70d642 Mon Sep 17 00:00:00 2001 From: Tomas Plesnik <plesnik@ics.muni.cz> Date: Thu, 13 Dec 2012 10:36:48 +0100 Subject: [PATCH] uprava generovani warden-server.conf --- src/warden-server/sh/install.sh | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/warden-server/sh/install.sh b/src/warden-server/sh/install.sh index 0456d66..c61b67d 100755 --- a/src/warden-server/sh/install.sh +++ b/src/warden-server/sh/install.sh @@ -188,7 +188,7 @@ make_server_conf() #------------------------------------------------------------------------------- # BASEDIR - base directory of Warden server #------------------------------------------------------------------------------- -\$BASEDIR = '${server_path}'; +\$BASEDIR = \"${server_path}\"; #------------------------------------------------------------------------------- # SYSLOG - enable/disable syslog logging @@ -203,40 +203,40 @@ make_server_conf() #------------------------------------------------------------------------------- # SYSLOG_FACILITY - syslog facility #------------------------------------------------------------------------------- -\$SYSLOG_FACILITY = 'local7'; +\$SYSLOG_FACILITY = \"local7\"; #------------------------------------------------------------------------------- # DB_NAME - MySQL database name of Warden server #------------------------------------------------------------------------------- -\$DB_NAME = 'warden'; +\$DB_NAME = \"warden\"; #------------------------------------------------------------------------------- # DB_USER - MySQL database user of Warden server #------------------------------------------------------------------------------- -\$DB_USER = 'warden'; +\$DB_USER = \"warden\"; #------------------------------------------------------------------------------- # DB_PASS - MySQL database password of Warden server #------------------------------------------------------------------------------- -\$DB_PASS = ''; +\$DB_PASS = \"\"; #------------------------------------------------------------------------------- # DB_HOST - MySQL database host #------------------------------------------------------------------------------- -\$DB_HOST = 'localhost'; +\$DB_HOST = \"localhost\"; #------------------------------------------------------------------------------- # MAX_EVENTS_LIMIT - server limit of maximum number of events that can be # delivered to one client in one batch #------------------------------------------------------------------------------- -\$MAX_EVENTS_LIMIT = '1000000'; +\$MAX_EVENTS_LIMIT = \"1000000\"; #------------------------------------------------------------------------------- # VALID_STRINGS - validation hash containing allowed event attributes #------------------------------------------------------------------------------- %VALID_STRINGS = ( - 'type' => ['portscan', 'bruteforce', 'probe', 'spam', 'phishing', 'botnet_c_c', 'dos', 'malware', 'copyright', 'webattack', 'test', 'other', '_any_'], - 'source_type' => ['IP', 'URL', 'Reply-To:'] + \"type\" => [\"portscan\", \"bruteforce\", \"probe\", \"spam\", \"phishing\", \"botnet_c_c\", \"dos\", \"malware\", \"copyright\", \"webattack\", \"test\", \"other\", \"_any_\"], + \"source_type\" => [\"IP\", \"URL\", \"Reply-To:\"] );" > $server_conf 2> $err; ret_val=`echo $?` if [ $ret_val -eq 0 ]; then -- GitLab