Skip to content
Snippets Groups Projects
Commit 50e77a9c authored by soukal's avatar soukal
Browse files

drobne upravy do verze 2.0.0-beta (doplneny verze, soubor AUTHORS, a jine drobnosti)

parent 4789242d
No related branches found
No related tags found
No related merge requests found
AUTHORS AND MAINTAINERS :
MAIN DEVELOPERS:
Tomas Plesnik <plesnik@ics.muni.cz>
Jan Soukal <soukal@ics.muni.cz>
Michal Kostenec <kostenec@civ.zcu.cz>
CONTRIBUTORS:
Vit Slama <slama@cis.vutbr.cz>
Martin Drasar <drasar@ics.muni.cz>
TESTING:
Jakub Cegan <cegan@ics.muni.cz>
DEVELOPMENT MANAGER:
Jan Vykopal <vykopal@ics.muni.cz>
PROJECT MANAGERS:
Pavel Kacha <ph@cesnet.cz>
Andrea Kropacova <andrea@cesnet.cz>
COMMUNITY:
Radoslav Bodo <bodik@civ.zcu.cz>
Radomir Orkac <orkac@cesnet.cz>
2012-05-10 v.2.0.0-beta beta-version of warden-client-2.0.0
-----------------------------------------------------------
- Changed communication with server to HTTP layer (compatible with Apache-based
version of Warden server)
- Removed Linux version check in install.sh, unistall.sh and update.sh
- Removed shell (Bash) dependencies in install.sh, unistall.sh and update.sh
2012-03-30 v1.2.0 stable version and bugfix release of warden-client-1.1.0 2012-03-30 v1.2.0 stable version and bugfix release of warden-client-1.1.0
-------------------------------------------------------------------------- --------------------------------------------------------------------------
- Fixed SSL certificate/key access privileges security issue - Fixed SSL certificate/key access privileges security issue
......
+------------------------------+ +-----------------------------------+
| README - Warden Client 1.2.0 | | README - Warden Client 2.0.0-beta |
+------------------------------+ +-----------------------------------+
Content Content
...@@ -13,7 +13,6 @@ Content ...@@ -13,7 +13,6 @@ Content
G. Configuration G. Configuration
H. Integration with Local Applications H. Integration with Local Applications
I. Functions, Arguments and Calls I. Functions, Arguments and Calls
J. Authors
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------
...@@ -30,7 +29,7 @@ A. Overall Information ...@@ -30,7 +29,7 @@ A. Overall Information
2. Version 2. Version
1.2.0 (2012-03-30) 2.0.0-beta (2012-05-10)
3. Package structure 3. Package structure
...@@ -59,7 +58,7 @@ B. Installation Dependencies ...@@ -59,7 +58,7 @@ B. Installation Dependencies
Perl >= 5.10.1 Perl >= 5.10.1
SOAP::Lite >= 0.712 SOAP::Lite >= 0.712
IO::Socket::SSL >= 1.33 IO::Socket::SSL >= 1.33
SOAP::Transport::TCP >= 0.712 SOAP::Transport::HTTP >= 0.712
FindBin >= 1.50 FindBin >= 1.50
DateTime >= 0.61 DateTime >= 0.61
...@@ -129,11 +128,11 @@ D. Installation (First installation of the Warden client package) ...@@ -129,11 +128,11 @@ D. Installation (First installation of the Warden client package)
1. Check SHA1 checksum of corresponding Warden client package archive 1. Check SHA1 checksum of corresponding Warden client package archive
$ sha1sum -c warden-client-1.2.0.tar.gz.sig $ sha1sum -c warden-client-2.0.0-beta.tar.gz.sig
2. Untar it 2. Untar it
$ tar xzvf warden-client-1.2.0.tar.gz $ tar xzvf warden-client-2.0.0-beta.tar.gz
3. Run install.sh 3. Run install.sh
...@@ -189,11 +188,11 @@ E. Update (Update of previously installed the Warden client package) ...@@ -189,11 +188,11 @@ E. Update (Update of previously installed the Warden client package)
1. Check SHA1 checksum of corresponding the Warden client package archive 1. Check SHA1 checksum of corresponding the Warden client package archive
$ sha1sum -c warden-client-1.2.0.tar.gz.sig $ sha1sum -c warden-client-2.0.0-beta.tar.gz.sig
2. Untar it 2. Untar it
$ tar xzvf warden-client-1.2.0.tar.gz $ tar xzvf warden-client-2.0.0-beta.tar.gz
3. Run update.sh 3. Run update.sh
...@@ -427,12 +426,5 @@ I. Functions, Arguments and Calls ...@@ -427,12 +426,5 @@ I. Functions, Arguments and Calls
additional attribute ID - unique id of this particular event (BIGINT). additional attribute ID - unique id of this particular event (BIGINT).
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------
J. Authors
Development: Tomas PLESNIK <plesnik@ics.muni.cz>
Jan SOUKAL <soukal@ics.muni.cz>
Copyright (C) 2011-2012 Cesnet z.s.p.o Copyright (C) 2011-2012 Cesnet z.s.p.o
\ No newline at end of file
Special thanks go to Martin Drasar from CSIRT-MU for his help and support
in the development of the Warden system.
#!/usr/bin/perl -w #!/usr/bin/perl -w
# #
# Copyright (C) 2011-2012 Cesnet z.s.p.o # Copyright (C) 2011-2012 Cesnet z.s.p.o
# Author(s): Tomas PLESNIK <plesnik@ics.muni.cz>
# Jan SOUKAL <soukal@ics.muni.cz>
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in
# the documentation and/or other materials provided with the
# distribution.
# 3. Neither the name of the Cesnet z.s.p.o nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# This software is provided ``as is'', and any express or implied
# warranties, including, but not limited to, the implied warranties of
# merchantability and fitness for a particular purpose are disclaimed.
# In no event shall the Cesnet z.s.p.o or contributors be liable for
# any direct, indirect, incidental, special, exemplary, or consequential
# damages (including, but not limited to, procurement of substitute
# goods or services; loss of use, data, or profits; or business
# interruption) however caused and on any theory of liability, whether
# in contract, strict liability, or tort (including negligence or
# otherwise) arising in any way out of the use of this software, even
# if advised of the possibility of such damage.
# #
# Use of this source is governed by a BSD-style license, see LICENSE file.
use strict; use strict;
......
#!/usr/bin/perl -w #!/usr/bin/perl -w
# #
# Copyright (C) 2011-2012 Cesnet z.s.p.o # Copyright (C) 2011-2012 Cesnet z.s.p.o
# Author(s): Tomas PLESNIK <plesnik@ics.muni.cz>
# Jan SOUKAL <soukal@ics.muni.cz>
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in
# the documentation and/or other materials provided with the
# distribution.
# 3. Neither the name of the Cesnet z.s.p.o nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# This software is provided ``as is'', and any express or implied
# warranties, including, but not limited to, the implied warranties of
# merchantability and fitness for a particular purpose are disclaimed.
# In no event shall the Cesnet z.s.p.o or contributors be liable for
# any direct, indirect, incidental, special, exemplary, or consequential
# damages (including, but not limited to, procurement of substitute
# goods or services; loss of use, data, or profits; or business
# interruption) however caused and on any theory of liability, whether
# in contract, strict liability, or tort (including negligence or
# otherwise) arising in any way out of the use of this software, even
# if advised of the possibility of such damage.
# #
# Use of this source is governed by a BSD-style license, see LICENSE file.
use strict; use strict;
use DateTime; use DateTime;
......
warden-client-1.3.0 warden-client-2.0.0-beta
...@@ -3,40 +3,14 @@ ...@@ -3,40 +3,14 @@
# WardenClientConf.pm # WardenClientConf.pm
# #
# Copyright (C) 2011-2012 Cesnet z.s.p.o # Copyright (C) 2011-2012 Cesnet z.s.p.o
# Author(s): Tomas PLESNIK <plesnik@ics.muni.cz>
# Jan SOUKAL <soukal@ics.muni.cz>
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in
# the documentation and/or other materials provided with the
# distribution.
# 3. Neither the name of the Cesnet z.s.p.o nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# This software is provided ``as is'', and any express or implied
# warranties, including, but not limited to, the implied warranties of
# merchantability and fitness for a particular purpose are disclaimed.
# In no event shall the Cesnet z.s.p.o or contributors be liable for
# any direct, indirect, incidental, special, exemplary, or consequential
# damages (including, but not limited to, procurement of substitute
# goods or services; loss of use, data, or profits; or business
# interruption) however caused and on any theory of liability, whether
# in contract, strict liability, or tort (including negligence or
# otherwise) arising in any way out of the use of this software, even
# if advised of the possibility of such damage.
# #
# Use of this source is governed by a BSD-style license, see LICENSE file.
package WardenClientConf; package WardenClientConf;
use strict; use strict;
our $VERSION = "1.0"; our $VERSION = "2.0";
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
# loadConf - load variables from configuration file # loadConf - load variables from configuration file
......
...@@ -3,33 +3,8 @@ ...@@ -3,33 +3,8 @@
# WardenClientReceive.pm # WardenClientReceive.pm
# #
# Copyright (C) 2011-2012 Cesnet z.s.p.o # Copyright (C) 2011-2012 Cesnet z.s.p.o
# Author(s): Tomas PLESNIK <plesnik@ics.muni.cz>
# Jan SOUKAL <soukal@ics.muni.cz>
# #
# Redistribution and use in source and binary forms, with or without # Use of this source is governed by a BSD-style license, see LICENSE file.
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in
# the documentation and/or other materials provided with the
# distribution.
# 3. Neither the name of the Cesnet z.s.p.o nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# This software is provided ``as is'', and any express or implied
# warranties, including, but not limited to, the implied warranties of
# merchantability and fitness for a particular purpose are disclaimed.
# In no event shall the Cesnet z.s.p.o or contributors be liable for
# any direct, indirect, incidental, special, exemplary, or consequential
# damages (including, but not limited to, procurement of substitute
# goods or services; loss of use, data, or profits; or business
# interruption) however caused and on any theory of liability, whether
# in contract, strict liability, or tort (including negligence or
# otherwise) arising in any way out of the use of this software, even
# if advised of the possibility of such damage.
package WardenClientReceive; package WardenClientReceive;
...@@ -39,7 +14,7 @@ use IO::Socket::SSL qw(debug1); ...@@ -39,7 +14,7 @@ use IO::Socket::SSL qw(debug1);
use SOAP::Transport::HTTP; use SOAP::Transport::HTTP;
use FindBin; use FindBin;
our $VERSION = "1.3"; #first iteration after 'port to Apache' our $VERSION = "2.0"; #first iteration after 'port to Apache'
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
# errMsg - print error message and die # errMsg - print error message and die
......
...@@ -3,33 +3,8 @@ ...@@ -3,33 +3,8 @@
# WardenClientSend.pm # WardenClientSend.pm
# #
# Copyright (C) 2011-2012 Cesnet z.s.p.o # Copyright (C) 2011-2012 Cesnet z.s.p.o
# Author(s): Tomas PLESNIK <plesnik@ics.muni.cz>
# Jan SOUKAL <soukal@ics.muni.cz>
# #
# Redistribution and use in source and binary forms, with or without # Use of this source is governed by a BSD-style license, see LICENSE file.
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in
# the documentation and/or other materials provided with the
# distribution.
# 3. Neither the name of the Cesnet z.s.p.o nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# This software is provided ``as is'', and any express or implied
# warranties, including, but not limited to, the implied warranties of
# merchantability and fitness for a particular purpose are disclaimed.
# In no event shall the Cesnet z.s.p.o or contributors be liable for
# any direct, indirect, incidental, special, exemplary, or consequential
# damages (including, but not limited to, procurement of substitute
# goods or services; loss of use, data, or profits; or business
# interruption) however caused and on any theory of liability, whether
# in contract, strict liability, or tort (including negligence or
# otherwise) arising in any way out of the use of this software, even
# if advised of the possibility of such damage.
package WardenClientSend; package WardenClientSend;
...@@ -38,7 +13,7 @@ use SOAP::Lite; ...@@ -38,7 +13,7 @@ use SOAP::Lite;
use IO::Socket::SSL qw(debug1); use IO::Socket::SSL qw(debug1);
use SOAP::Transport::HTTP; use SOAP::Transport::HTTP;
our $VERSION = "1.3"; #first iteration after 'port to Apache' our $VERSION = "2.0"; #first iteration after 'port to Apache'
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
......
...@@ -3,35 +3,10 @@ ...@@ -3,35 +3,10 @@
# install.sh # install.sh
# #
# Copyright (C) 2011-2012 Cesnet z.s.p.o # Copyright (C) 2011-2012 Cesnet z.s.p.o
# Author(s): Tomas PLESNIK <plesnik@ics.muni.cz>
# Jan SOUKAL <soukal@ics.muni.cz>
# #
# Redistribution and use in source and binary forms, with or without # Use of this source is governed by a BSD-style license, see LICENSE file.
# modification, are permitted provided that the following conditions
# are met: VERSION="2.0"
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in
# the documentation and/or other materials provided with the
# distribution.
# 3. Neither the name of the Cesnet z.s.p.o nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# This software is provided ``as is'', and any express or implied
# warranties, including, but not limited to, the implied warranties of
# merchantability and fitness for a particular purpose are disclaimed.
# In no event shall the Cesnet z.s.p.o or contributors be liable for
# any direct, indirect, incidental, special, exemplary, or consequential
# damages (including, but not limited to, procurement of substitute
# goods or services; loss of use, data, or profits; or business
# interruption) however caused and on any theory of liability, whether
# in contract, strict liability, or tort (including negligence or
# otherwise) arising in any way out of the use of this software, even
# if advised of the possibility of such damage.
VERSION="1.1"
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
# FUNCTIONS # FUNCTIONS
......
...@@ -3,35 +3,10 @@ ...@@ -3,35 +3,10 @@
# uninstall.sh # uninstall.sh
# #
# Copyright (C) 2011-2012 Cesnet z.s.p.o # Copyright (C) 2011-2012 Cesnet z.s.p.o
# Author(s): Tomas PLESNIK <plesnik@ics.muni.cz>
# Jan SOUKAL <soukal@ics.muni.cz>
# #
# Redistribution and use in source and binary forms, with or without # Use of this source is governed by a BSD-style license, see LICENSE file.
# modification, are permitted provided that the following conditions
# are met: VERSION="2.0"
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in
# the documentation and/or other materials provided with the
# distribution.
# 3. Neither the name of the Cesnet z.s.p.o nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# This software is provided ``as is'', and any express or implied
# warranties, including, but not limited to, the implied warranties of
# merchantability and fitness for a particular purpose are disclaimed.
# In no event shall the Cesnet z.s.p.o or contributors be liable for
# any direct, indirect, incidental, special, exemplary, or consequential
# damages (including, but not limited to, procurement of substitute
# goods or services; loss of use, data, or profits; or business
# interruption) however caused and on any theory of liability, whether
# in contract, strict liability, or tort (including negligence or
# otherwise) arising in any way out of the use of this software, even
# if advised of the possibility of such damage.
VERSION="1.0"
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
# FUNCTIONS # FUNCTIONS
......
...@@ -3,36 +3,10 @@ ...@@ -3,36 +3,10 @@
# update.sh # update.sh
# #
# Copyright (C) 2011-2012 Cesnet z.s.p.o # Copyright (C) 2011-2012 Cesnet z.s.p.o
# Author(s): Tomas PLESNIK <plesnik@ics.muni.cz>
# Jan SOUKAL <soukal@ics.muni.cz>
# #
# Redistribution and use in source and binary forms, with or without # Use of this source is governed by a BSD-style license, see LICENSE file.
# modification, are permitted provided that the following conditions
# are met: VERSION="2.0"
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in
# the documentation and/or other materials provided with the
# distribution.
# 3. Neither the name of the Cesnet z.s.p.o nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# This software is provided ``as is'', and any express or implied
# warranties, including, but not limited to, the implied warranties of
# merchantability and fitness for a particular purpose are disclaimed.
# In no event shall the Cesnet z.s.p.o or contributors be liable for
# any direct, indirect, incidental, special, exemplary, or consequential
# damages (including, but not limited to, procurement of substitute
# goods or services; loss of use, data, or profits; or business
# interruption) however caused and on any theory of liability, whether
# in contract, strict liability, or tort (including negligence or
# otherwise) arising in any way out of the use of this software, even
# if advised of the possibility of such damage.
VERSION="1.1"
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
# FUNCTIONS # FUNCTIONS
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment