From e6f2b7930a838486683fb7d1d8982cd3e50f4aa6 Mon Sep 17 00:00:00 2001 From: Tomas Plesnik <plesnik@ics.muni.cz> Date: Wed, 7 Jan 2015 12:18:16 +0100 Subject: [PATCH] pridana sablona pro install.sh --- src/warden-client/etc/warden-client.conf.tmpl | 66 +++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 src/warden-client/etc/warden-client.conf.tmpl diff --git a/src/warden-client/etc/warden-client.conf.tmpl b/src/warden-client/etc/warden-client.conf.tmpl new file mode 100644 index 0000000..fe6f03a --- /dev/null +++ b/src/warden-client/etc/warden-client.conf.tmpl @@ -0,0 +1,66 @@ +# +# warden-client.conf - configuration file for the Warden client +# +# Copyright (C) 2011-2015 Cesnet z.s.p.o +# +# Use of this source is governed by a BSD-style license, see LICENSE file. + +#------------------------------------------------------------------------------- +# BASEDIR - base directory of Warden client +#------------------------------------------------------------------------------- +$BASEDIR = "_BASEDIR_"; + +#------------------------------------------------------------------------------- +# URI - URI address of Warden server +#------------------------------------------------------------------------------- +$URI = "https://warden.cesnet.cz:443/Warden"; + +#------------------------------------------------------------------------------- +# SSL_KEY - path to client SSL key +#------------------------------------------------------------------------------- +$SSL_KEY = "_KEYFILE_"; + +#------------------------------------------------------------------------------- +# SSL_CERT - path to client SSL certificate +#------------------------------------------------------------------------------- +$SSL_CERT = "_CERTFILE_"; + +#------------------------------------------------------------------------------- +# SSL_CA_CERT - path to CA certificate +#------------------------------------------------------------------------------- +$SSL_CA_CERT = "_CAFILE_"; + +#------------------------------------------------------------------------------- +# MAX_RCV_EVENTS_LIMIT - maximum number of events the client is allowd to get +# from the Warden server in one batch. 6000 events +# consumes app. 250 MB of memory +#------------------------------------------------------------------------------- +$MAX_RCV_EVENTS_LIMIT = 6000; + +#------------------------------------------------------------------------------- +# CONNECTION_TIMEOUT - interval in seconds to timeout connection with Warden +# server. If your client timeouts, consider using higher +# timeout number. Also, in case of receiving clients, you +# can optimize the MAX_RCV_EVENTS_LIMIT value. +#------------------------------------------------------------------------------- +$CONNECTION_TIMEOUT = 60; + +#------------------------------------------------------------------------------- +# LOG_STDERR - enable/disable error reporting to stderr +#------------------------------------------------------------------------------- +$LOG_STDERR = 1; + +#------------------------------------------------------------------------------- +# SYSLOG - enable/disable syslog logging +#------------------------------------------------------------------------------- +$SYSLOG = 1; + +#------------------------------------------------------------------------------- +# SYSLOG_VERBOSE - enable/disable logging in verbose mode (stack info added) +#------------------------------------------------------------------------------- +$SYSLOG_VERBOSE = 1; + +#------------------------------------------------------------------------------- +# SYSLOG_FACILITY - syslog facility +#------------------------------------------------------------------------------- +$SYSLOG_FACILITY = "local7"; -- GitLab