Skip to content

Commit

Permalink
[Version] Version 5.12.1 Community Edittion
Browse files Browse the repository at this point in the history
Signed-off-by: Antonio Rendon <[email protected]>

	modified:   DEBIAN/control
	modified:   usr/local/zevenet/bin/checkupdates
	modified:   usr/share/perl5/Zevenet/Farm/L4xNAT/Backend.pm
  • Loading branch information
Rendone-zevenet committed May 17, 2022
1 parent 66889cd commit 5d8acc1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions DEBIAN/control
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
Package: zevenet
Version: 5.12.0
Version: 5.12.1
Maintainer: Zevenet SL <[email protected]>
Architecture: amd64
Section: admin
Priority: optional
Description: Zevenet Load Balancer Community Edition
Zevenet is a Multilayered Aplication Delivery Controller (ADC) and high performance load balancer whith an easy configuration, usability and user-friendly web GUI for layer 3, 4 and 7 networking management.
Depends: libnftables1, nftables (>= 0.9.1), linux-headers-amd64 (>= 4.19+105), linux-image-amd64 (>= 4.19+105), rrdtool, libnet-netmask-perl, libproc-daemon-perl, libnetwork-ipv4addr-perl, librrds-perl, libio-interface-perl, libdata-validate-ip-perl, libpcap0.8, ntpdate, libfile-grep-perl, iputils-arping, openssl, unzip, libev4, libjson-perl, libjson-xs-perl, libcgi-session-perl, libauthen-simple-perl, libauthen-simple-passwd-perl, conntrack, liburi-perl, libtimedate-perl, libconfig-tiny-perl, snmpd, libnet-ssleay-perl, libnetaddr-ip-perl, libswitch-perl, libcgi-simple-perl, libunix-syslog-perl, monitoring-plugins, monitoring-plugins-common, net-tools, cherokee, pound, libregexp-ipv6-perl, nftlb, curl, zproxy (>= 0.1.0-5.10.1), libcrypt-openssl-x509-perl, certbot
Depends: nftables (>= 0.9.1), linux-headers-amd64 (>= 4.19+105), linux-image-amd64 (>= 4.19+105), rrdtool, libnet-netmask-perl, libproc-daemon-perl, libnetwork-ipv4addr-perl, librrds-perl, libio-interface-perl, libdata-validate-ip-perl, libpcap0.8, ntpdate, libfile-grep-perl, iputils-arping, openssl, unzip, libev4, libjson-perl, libjson-xs-perl, libcgi-session-perl, libauthen-simple-perl, libauthen-simple-passwd-perl, conntrack, liburi-perl, libtimedate-perl, libconfig-tiny-perl, snmpd, libnet-ssleay-perl, libnetaddr-ip-perl, libswitch-perl, libcgi-simple-perl, libunix-syslog-perl, monitoring-plugins, monitoring-plugins-common, net-tools, cherokee, pound, libregexp-ipv6-perl, nftlb, curl, zproxy (>= 0.1.0-5.10.1), libcrypt-openssl-x509-perl, certbot
6 changes: 3 additions & 3 deletions usr/local/zevenet/bin/checkupdates
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,12 @@ case "$1" in
;;

'-i') # Install the non-updated packages
DEBIAN_FRONTEND=noninteractive $apt_bin --with-new-pkgs upgrade
DEBIAN_FRONTEND=noninteractive $apt_bin --with-new-pkgs upgrade -o Dir::Etc::sourcelist="$apt_source_zevenet"
#checkupdates
#do this in order to update the web GUI alerts after any installation
$aptget_bin update -o Dir::Etc::sourceparts="-" -o Dir::Etc::sourcelist="sources.list.d/zevenet.list" > /dev/null
$aptget_bin update -o Dir::Etc::sourceparts="-" -o Dir::Etc::sourcelist="$apt_source_zevenet" > /dev/null
echo "Zevenet Packages are up-to-date." > $apt_msg
$apt_bin list --upgradable -o Dir::Etc::sourceparts="-" -o Dir::Etc::sourcelist="sources.list.d/zevenet.list" 2>/dev/null | cut -d"/" -f 1 | sed '1d' | tr '\n' ' ' > $apt_outdated_list
$apt_bin list --upgradable -o Dir::Etc::sourceparts="-" -o Dir::Etc::sourcelist="$apt_source_zevenet" 2>/dev/null | cut -d"/" -f 1 | sed '1d' | tr '\n' ' ' > $apt_outdated_list

;;

Expand Down
1 change: 1 addition & 0 deletions usr/share/perl5/Zevenet/Farm/L4xNAT/Backend.pm
Original file line number Diff line number Diff line change
Expand Up @@ -611,6 +611,7 @@ sub _getL4FarmParseServers
$server->{ status } = "undefined" if ( $server->{ status } eq "config_error" );
$server->{ status } = "maintenance" if ( $server->{ status } eq "off" );
$server->{ status } = "fgDOWN" if ( $server->{ status } eq "down" );
$server->{ status } = "up" if ( $server->{ status } eq "available" );
}
}
Expand Down

0 comments on commit 5d8acc1

Please sign in to comment.