diff --git a/src/warden-client/etc/warden-client.conf.tmpl.update b/src/warden-client/etc/warden-client.conf.tmpl.update
new file mode 100644
index 0000000000000000000000000000000000000000..330d91ef4c1908530701652ca6b9dd257d538930
--- /dev/null
+++ b/src/warden-client/etc/warden-client.conf.tmpl.update
@@ -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 = "_URI_";
+
+#-------------------------------------------------------------------------------
+# 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 = _MAXRCVEVENTSLIMIT_;
+ 
+#-------------------------------------------------------------------------------
+# 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 = _CONNECTIONTIMEOUT_;
+
+#-------------------------------------------------------------------------------
+# LOG_STDERR - enable/disable error reporting to stderr
+#-------------------------------------------------------------------------------
+$LOG_STDERR = _LOGSTDERR_;
+
+#-------------------------------------------------------------------------------
+# SYSLOG - enable/disable syslog logging
+#-------------------------------------------------------------------------------
+$SYSLOG = _SYSLOG_;
+
+#-------------------------------------------------------------------------------
+# SYSLOG_VERBOSE - enable/disable logging in verbose mode (stack info added)
+#-------------------------------------------------------------------------------
+$SYSLOG_VERBOSE = _SYSLOGVERBOSE_;
+
+#-------------------------------------------------------------------------------
+# SYSLOG_FACILITY - syslog facility
+#-------------------------------------------------------------------------------
+$SYSLOG_FACILITY = "_SYSLOGFACILITY_";