diff --git a/packages/build-client.sh b/packages/build-client.sh
index 7f3bdb7ee4ed1098023bbab45d312de16d656929..32a1972856e7917f9561c6ec2ea5f474579ff5ba 100755
--- a/packages/build-client.sh
+++ b/packages/build-client.sh
@@ -92,6 +92,10 @@ cp ../src/warden-client/doc/README $package 2> $err; ret_val=`echo $?`
 if [ $ret_val -ne 0 ]; then
   err
 fi
+cp ../src/warden-client/doc/README.cesnet $package 2> $err; ret_val=`echo $?`
+if [ $ret_val -ne 0 ]; then
+  err
+fi
 echo "OK"
 
 
diff --git a/src/warden-client/doc/README.cesnet b/src/warden-client/doc/README.cesnet
new file mode 100644
index 0000000000000000000000000000000000000000..1ab9184f3a20f93c2960bb6ebe3f677c58933fc3
--- /dev/null
+++ b/src/warden-client/doc/README.cesnet
@@ -0,0 +1,80 @@
++-------------------------------------+
+| README.cesnet - Warden Client 1.0.0 |
+| CESNET Specifics                    |
++-------------------------------------+
+
+Content
+
+ A. Overall Information
+ B. Registration
+ C. Configuration
+ D. Testing
+ E. Authors of this document
+
+--------------------------------------------------------------------------------
+A. Overall Information
+
+ 1. About CESNET Warden Server
+
+    Warden is a client-based architecture service designed to share detected
+    security issues (events) among CSIRT and CERT teams in a simple and fast way.
+
+    CESNET offers Warden server for security events exchange within its networks.
+
+ 2. Version
+
+    1.0.0 (2011-11-16)
+
+--------------------------------------------------------------------------------
+B. Registration
+
+    Client attempting to communicate with CESNET Warden server must be
+    registered. Registration is currently provided by Tomas Plesnik at
+    address plesnik@ics.muni.cz and following information is needed:
+
+    * For sender client:
+      - hostname of the machine, where client runs,
+      - name of the detection service (for example 'ScanDetector'),
+      - client type = sender,
+      - description tags of sent events (more at 
+        https://homeproj.cesnet.cz/projects/warden/wiki/Typy_udalosti), 
+      - CIDR from which client will communicate with Warden server.
+
+    * For receiver client:
+      - hostname of the machine, where client runs,
+      - client type = receiver,
+      - type of requested events (for example 'portscan', more at
+        https://homeproj.cesnet.cz/projects/warden/wiki/Typy_udalosti),
+      - receiving of sent events from my organization = yes/no (organizations
+        are separated based on the top-level and second-level domain),
+      - CIDR from which client will communicate with Warden server.
+
+    Clients need to have valid certificate to prove their identity to the
+    Warden server. For CESNET network, 'server' type certificate from Terena
+    Certificate Service (provided by Comodo) is needed. Hostname of the
+    machine must correspond with certificate subject, Alternative Name
+    extension is not supported. Administrator of Warden client must be
+    entitled to obtain this certificate. CESNET TCS request service 
+    interface resides at
+
+      https://tcs.cesnet.cz/
+
+--------------------------------------------------------------------------------
+C. Configuration
+
+    CESNET Warden server resides at URI 'https://warden.cesnet.cz:443/Warden'.  
+
+--------------------------------------------------------------------------------       
+D. Testing
+
+    For testing purposes of sender clients, event type 'test' can be used.
+    These events will end up in server database, but will not be taken
+    further into consideration.
+
+--------------------------------------------------------------------------------
+E. Authors of this document
+
+    Pavel Kacha     <ph@cesnet.cz>
+    Jan Soukal      <soukal@ics.muni.cz>
+
+Copyright (C) 2011 Cesnet z.s.p.o
diff --git a/src/warden-client/sh/install.sh b/src/warden-client/sh/install.sh
index 454321b97047a8231de48a64402f03bdba8f69ec..7b944c9bbea5c5f4a13a55e8578c12abd04ed240 100755
--- a/src/warden-client/sh/install.sh
+++ b/src/warden-client/sh/install.sh
@@ -192,7 +192,6 @@ make_warden_dir()
   else
     err_clean
   fi
-  cp -u CHANGELOG INSTALL LICENSE README "$client_path/doc"
 }
 
 
diff --git a/src/warden-client/sh/update.sh b/src/warden-client/sh/update.sh
index 536d4676461ba83703b550545371f4a8006fb189..cf57570d1af0d96073e6baf72c8e205ec1fecca3 100755
--- a/src/warden-client/sh/update.sh
+++ b/src/warden-client/sh/update.sh
@@ -212,7 +212,6 @@ update_warden_dir()
   else
     err_clean
   fi
-  cp -u CHANGELOG INSTALL LICENSE README "$client_path/doc"
 }