diff --git a/src/warden-client/doc/CHANGELOG b/src/warden-client/doc/CHANGELOG index 44c6c2135aab7970fdd466b66194974219851ad0..909c98e90896be764a1e27be802c829f39003efd 100644 --- a/src/warden-client/doc/CHANGELOG +++ b/src/warden-client/doc/CHANGELOG @@ -1,5 +1,17 @@ +2012-02-?? v1.1.0 stable version and bugfix release of warden-client-1.0.0 +-------------------------------------------------------------------------- +- Fixed bug when receiving of events +- Fixed earlier declaration in same scope of variable $data +- Fixed errMsg function -> finishing by the die function +- Added client configuration module WardenClientConf.pm +- Added error message when warden server is down +- Added README.cesnet (CESNET Specifics) file +- Added uninstallation script -> uninstall.sh +- Added update script -> update.sh +- Fixed several small bugs/issues + 2011-11-16 v1.0.0 stable version -------------------------------- -- initial package of warden client +- Initial package of warden client - SSL certificate authentication/authorization supported -- automatized installation process +- Automatized installation process diff --git a/src/warden-client/doc/LICENSE b/src/warden-client/doc/LICENSE index ec047e7c63ede903c326a6e4bf7e3bfa821625b2..41397ce2aac7e03fac59f38a50036b705044a184 100644 --- a/src/warden-client/doc/LICENSE +++ b/src/warden-client/doc/LICENSE @@ -1,6 +1,6 @@ BSD License -Copyright © 2011 Cesnet z.s.p.o +Copyright © 2011-2012 Cesnet z.s.p.o All rights reserved. Redistribution and use in source and binary forms, with or without modification, diff --git a/src/warden-client/doc/README b/src/warden-client/doc/README index 910677270f2cfac88c13fd6a62890e46ba4f8f91..33d8595bb6de563bb4e5b3c54a60dce7af916aa0 100644 --- a/src/warden-client/doc/README +++ b/src/warden-client/doc/README @@ -1,5 +1,5 @@ +------------------------------+ -| README - Warden Client 1.0.0 | +| README - Warden Client 1.1.0 | +------------------------------+ Content @@ -28,9 +28,9 @@ A. Overall Information 2. Version - 1.0.0 (2011-11-16) + 1.1.0 (2012-02-16) - DOPLNIT - 3. Package structure + 3. Package structure - DOPLNIT warden-client/ doc/ @@ -47,11 +47,12 @@ A. Overall Information -------------------------------------------------------------------------------- B. Installation Dependencies - Perl 5.10.1 - SOAP::Lite - IO::Socket::SSL - SOAP::Transport::TCP - FindBin + Perl >= 5.10.1 + SOAP::Lite >= 0.712 + IO::Socket::SSL >= 1.33 + SOAP::Transport::TCP >= 0.712 + FindBin >= 1.50 + DateTime >= 0.61 -------------------------------------------------------------------------------- C. Registration @@ -98,11 +99,11 @@ D. Installation 1. Check SHA1 checksum of corresponding Warden client package archive - $ sha1sum -c warden-client-1.0.0.tar.gz.sig + $ sha1sum -c warden-client-1.1.0.tar.gz.sig 2. Untar it - $ tar xzvf warden-client-1.0.0.tar.gz + $ tar xzvf warden-client-1.1.0.tar.gz 3. Run install.sh @@ -331,7 +332,7 @@ H. Authors Development: Tomas PLESNIK <plesnik@ics.muni.cz> Jan SOUKAL <soukal@ics.muni.cz> -Copyright (C) 2011 Cesnet z.s.p.o +Copyright (C) 2012 Cesnet z.s.p.o Special thanks go to Martin Drasar from CSIRT-MU for his help and support in the development of Warden system. diff --git a/src/warden-client/lib/WardenClientConf.pm b/src/warden-client/lib/WardenClientConf.pm index 68cd9786f5efdb9a42e46b815db8761ccad7cf14..8adab10f6a5bb894016ff2f39505d003e5b90d47 100755 --- a/src/warden-client/lib/WardenClientConf.pm +++ b/src/warden-client/lib/WardenClientConf.pm @@ -36,7 +36,7 @@ package WardenClientConf; use strict; -our $VERSION = "1.1.0"; +our $VERSION = "1.0"; #------------------------------------------------------------------------------- # loadConf - load variables from configuration file diff --git a/src/warden-client/lib/WardenClientReceive.pm b/src/warden-client/lib/WardenClientReceive.pm index 43f4bab5ad95653225fdc1d2fde1682e759cea9a..844aa00f749923682cde20438f9a879a0557ffde 100755 --- a/src/warden-client/lib/WardenClientReceive.pm +++ b/src/warden-client/lib/WardenClientReceive.pm @@ -39,7 +39,7 @@ use IO::Socket::SSL qw(debug1); use SOAP::Transport::TCP; use FindBin; -our $VERSION = "1.1.0"; +our $VERSION = "1.1"; #------------------------------------------------------------------------------- # errMsg - print error message and die diff --git a/src/warden-client/lib/WardenClientSend.pm b/src/warden-client/lib/WardenClientSend.pm index 064b9e25d379548c801f72066d730e36a9a6a402..7898d5f984e03ddd901fd5d48d6caf5c0b26bd74 100755 --- a/src/warden-client/lib/WardenClientSend.pm +++ b/src/warden-client/lib/WardenClientSend.pm @@ -38,7 +38,7 @@ use SOAP::Lite; use IO::Socket::SSL qw(debug1); use SOAP::Transport::TCP; -our $VERSION = "1.1.0"; +our $VERSION = "1.1"; #------------------------------------------------------------------------------- diff --git a/src/warden-client/sh/update.sh b/src/warden-client/sh/update.sh index daf0d599c8b44bf217761c0255b98f9b475e3797..5bea9177329cfc85d824a43108bb12e32dd5c4e7 100755 --- a/src/warden-client/sh/update.sh +++ b/src/warden-client/sh/update.sh @@ -32,7 +32,7 @@ # if advised of the possibility of such damage. -VERSION="1.1.0" +VERSION="1.0" #------------------------------------------------------------------------------- # FUNCTIONS