Skip to content
Snippets Groups Projects
Commit 9e1475df authored by Tomáš Plesník's avatar Tomáš Plesník
Browse files

zmena verze warden serveru na 0.1.0; zmena verze koponent serveru; pridana...

zmena verze warden serveru na 0.1.0; zmena verze koponent serveru; pridana podpora SAN do changelogu
parent f7f5f09f
No related branches found
No related tags found
No related merge requests found
Showing
with 22 additions and 22 deletions
......@@ -31,7 +31,7 @@
# otherwise) arising in any way out of the use of this software, even
# if advised of the possibility of such damage.
VERSION="1.1.0"
VERSION="1.1"
err()
{
......
No preview for this file type
bfc5cae9e70af6abe389c0f496a7bf3536051ff8 warden-client-1.1.0.tar.gz
2448a581f61e9169400de2c4d248d76319facfc1 warden-client-1.1.0.tar.gz
......@@ -35,7 +35,7 @@ use strict;
use Getopt::Std;
use File::Basename;
our $VERSION = "1.0";
our $VERSION = "0.1";
my $warden_path = '/opt/warden-server';
require $warden_path . '/lib/WardenStatus.pm';
......
......@@ -35,7 +35,7 @@ use strict;
use Getopt::Std;
use File::Basename;
our $VERSION = "1.0";
our $VERSION = "0.1";
my $warden_path = '/opt/warden-server';
require $warden_path . '/lib/WardenStatus.pm';
......
......@@ -36,7 +36,7 @@ use Getopt::Std;
use Switch;
use File::Basename;
our $VERSION = "1.0";
our $VERSION = "0.1";
my $warden_path = '/opt/warden-server';
require $warden_path . '/lib/WardenReg.pm';
......
......@@ -36,7 +36,7 @@ use Getopt::Std;
use Switch;
use File::Basename;
our $VERSION = "1.0";
our $VERSION = "0.1";
my $warden_path = '/opt/warden-server';
require $warden_path . '/lib/WardenReg.pm';
......
......@@ -36,7 +36,7 @@ use Getopt::Std;
use Switch;
use File::Basename;
our $VERSION = "1.0";
our $VERSION = "0.1";
my $warden_path = '/opt/warden-server';
require $warden_path . '/lib/WardenReg.pm';
......
......@@ -30,7 +30,7 @@
# otherwise) arising in any way out of the use of this software, even
# if advised of the possibility of such damage.
our $VERSION = "1.0";
our $VERSION = "0.1";
my $rv = `ps aux | grep "/usr/bin/perl -w /opt/warden-server/bin/warden-server.pl" | grep -v grep | grep -v process-alive | wc -l`;
if ($rv) {
......
......@@ -42,7 +42,7 @@
# among CSIRT teams
### END INIT INFO
VERSION="1.0"
VERSION="0.1"
DAEMON="/opt/warden-server/bin/warden-server.pl"
PID_FILE="/var/run/warden-server.pl.pid"
......
2012-02-24 v1.0.0 stable version
2012-03-02 v0.1.0 stable version
--------------------------------
- initial package of warden server
- SSL certificate authentication/authorization supported
- Subject Alternative Names from SSL cert supported
- automatized installation and uninstallation process
+------------------------------+
| README - Warden Server 1.0.0 |
| README - Warden Server 0.1.0 |
+------------------------------+
Content
......@@ -27,7 +27,7 @@ A. Overall Information
2. Version
1.0.0 (2012-01-31)
0.1.0 (2012-03-02)
3. Package structure
......
......@@ -36,7 +36,7 @@ package WardenConf;
use strict;
our $VERSION = "1.0";
our $VERSION = "0.1";
#-------------------------------------------------------------------------------
# loadConf - load variables from configuration file
......
......@@ -38,7 +38,7 @@ use SOAP::Lite;
use IO::Socket::SSL qw(debug1);
use SOAP::Transport::TCP;
our $VERSION = "1.0";
our $VERSION = "0.1";
#-------------------------------------------------------------------------------
......
......@@ -38,7 +38,7 @@ use SOAP::Lite;
use IO::Socket::SSL qw(debug1);
use SOAP::Transport::TCP
our $VERSION = "1.0";
our $VERSION = "0.1";
#-------------------------------------------------------------------------------
# errMsg - print error message and die
......
......@@ -31,23 +31,22 @@
# otherwise) arising in any way out of the use of this software, even
# if advised of the possibility of such damage.
VERSION="1.1"
VERSION="0.1"
#-------------------------------------------------------------------------------
# FUNCTIONS
#-------------------------------------------------------------------------------
usage()
{
echo "Usage: `basename $0` [-d <directory>] [-u <user>] [-k <ssl_key_file>] [-c <ssl_cert_file>] [-a <ssl_ca_file>] [-hV]"
echo "Usage: `basename $0` [-d <directory>] [-k <ssl_key_file>] [-c <ssl_cert_file>] [-a <ssl_ca_file>] [-hV]"
echo "-d <directory> installation directory (default: /opt)"
echo "-u <user> owner of warden client package (user for running detection scripts)"
echo "-k <ssl_key_file> path to SSL certificate key file"
echo "-c <ssl_cert_file> path to SSL certificate file"
echo "-a <ssl_ca_file> path to CA certificate file"
echo "-h print this help"
echo "-V print script version number and exit"
echo
echo "Example: # ./`basename $0` -d /opt -u detector -k /etc/ssl/private/client.key -c /etc/ssl/certs/client.pem -a /etc/ssl/certs/tcs-ca-bundle.pem"
echo "Example: # ./`basename $0` -d /opt -k /etc/ssl/private/server.key -c /etc/ssl/certs/server.pem -a /etc/ssl/certs/tcs-ca-bundle.pem"
echo
echo "Note: You must be root for running this script."
echo " For more information about installation process, see README file (section Installation)."
......@@ -77,8 +76,8 @@ err()
err_clean()
{
echo "FAILED!"
echo " -> Uninstalling client package ... OK"
rm -rf $client_path > /dev/null 2>&1
echo " -> Uninstalling server package ... OK"
rm -rf $server_path > /dev/null 2>&1
cat $err
rm -rf $err
echo
......
......@@ -31,7 +31,7 @@
# otherwise) arising in any way out of the use of this software, even
# if advised of the possibility of such damage.
VERSION="1.0"
VERSION="0.1"
#-------------------------------------------------------------------------------
# FUNCTIONS
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment