Skip to content

Commit 5310d05

Browse files
committed
Update version to 1.6.4
1 parent 17eabf0 commit 5310d05

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ PowerGSLB is a simple DNS based Global Server Load Balancing (GSLB) solution.
55
Main features:
66
* Quick installation and setup
77
* Written in Python 2.7
8-
* Built as PowerDNS Authoritative Server [Remote Backend] (https://doc.powerdns.com/3/authoritative/backend-remote/)
9-
* Web based administration interface using [w2ui] (http://w2ui.com/)
10-
* HTTPS support for the webserver using [stunnel] (https://www.stunnel.org/)
8+
* Built as PowerDNS Authoritative Server [Remote Backend](https://doc.powerdns.com/3/authoritative/backend-remote/)
9+
* Web based administration interface using [w2ui](http://w2ui.com/)
10+
* HTTPS support for the webserver using [stunnel](https://www.stunnel.org/)
1111
* DNS GSLB configuration stored in a MySQL / MariaDB database
12-
* Master-Slave DNS GSLB using native MySQL / MariaDB [replication] (https://dev.mysql.com/doc/refman/5.5/en/replication.html)
13-
* Multi-Master DNS GSLB using native MySQL / MariaDB [Galera Cluster] (http://galeracluster.com/)
12+
* Master-Slave DNS GSLB using native MySQL / MariaDB [replication](https://dev.mysql.com/doc/refman/5.5/en/replication.html)
13+
* Multi-Master DNS GSLB using native MySQL / MariaDB [Galera Cluster](http://galeracluster.com/)
1414
* Modular architecture
1515
* Multithreaded architecture
1616
* Systemd status and watchdog support
@@ -45,20 +45,20 @@ Advanced search
4545
Add new record
4646
![](https://github.com/AlekseyChudov/powergslb/blob/master/images/web-form.png?raw=true)
4747

48-
[More images] (https://github.com/AlekseyChudov/powergslb/tree/master/images)
48+
[More images](https://github.com/AlekseyChudov/powergslb/tree/master/images)
4949

5050
## Installation on CentOS 7
5151

5252
### Create PowerGSLB RPM packages
5353

5454
You should always create RPM packages in a clean environment and preferably on a separate machine!
5555

56-
Please read [How to create an RPM package] (https://fedoraproject.org/wiki/How_to_create_an_RPM_package).
56+
Please read [How to create an RPM package](https://fedoraproject.org/wiki/How_to_create_an_RPM_package).
5757
```shell
5858
yum -y update
5959
yum -y install @Development\ Tools
6060

61-
VERSION=1.6.1
61+
VERSION=1.6.4
6262
curl "https://codeload.github.com/AlekseyChudov/powergslb/tar.gz/$VERSION" > "powergslb-$VERSION.tar.gz"
6363
rpmbuild -tb --define "version $VERSION" "powergslb-$VERSION.tar.gz"
6464
```
@@ -80,7 +80,7 @@ yum -y install gcc python-devel python-pip
8080

8181
pip install pyping subprocess32
8282

83-
VERSION=1.6.1
83+
VERSION=1.6.4
8484
yum -y install "powergslb-$VERSION-1.el7.centos.noarch.rpm" \
8585
"powergslb-admin-$VERSION-1.el7.centos.noarch.rpm" \
8686
"powergslb-pdns-$VERSION-1.el7.centos.noarch.rpm" \
@@ -105,7 +105,7 @@ systemctl status mariadb.service
105105

106106
mysql_secure_installation
107107

108-
VERSION=1.6.1
108+
VERSION=1.6.4
109109
mysql -p << EOF
110110
CREATE DATABASE powergslb;
111111
GRANT ALL ON powergslb.* TO powergslb@localhost IDENTIFIED BY 'your-database-password-here';

src/powergslb/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
"""
66

77
__author__ = 'Aleksey Chudov <aleksey.chudov@gmail.com>'
8-
__date__ = '11 Jun 2016'
9-
__version__ = '1.6.1'
8+
__date__ = '14 May 2017'
9+
__version__ = '1.6.4'

0 commit comments

Comments
 (0)