Commit Graph

836 Commits (4c17462e5a9bff0987cfdb39ef6890eb8ef15d1c)

Author SHA1 Message Date
cclauss e74db7c856
Initialize oldstat at the top of the function
It is not essential but it is safer if the code is changed in the future...

[flake8](http://flake8.pycqa.org) testing of https://github.com/Aidaho12/haproxy-wi on Python 3.7.0

$ __flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics__
```
/home/travis/virtualenv/python3.7.0/lib/python3.7/site-packages/pycodestyle.py:113: FutureWarning: Possible nested set at position 1
  EXTRANEOUS_WHITESPACE_REGEX = re.compile(r'[[({] | []}),;:]')
./app/tools/checker_worker.py:70:27: F821 undefined name 'oldstat'
				if (currentstat[i] != oldstat[i] and currentstat[i]!="none") and ("FRONTEND" not in str(vips[i]) and "BACKEND" not in str(vips[i])):
                          ^
1     F821 undefined name 'oldstat'
1
```
2018-08-11 18:38:47 +02:00
Aidaho12 c0dbf08f23 v3.0
Most settings migrate into DB, improved install script, and haproxy install script
2018-08-11 20:47:47 +06:00
Aidaho12 86f68abd0d v2.9
some functions WAF, bugs
2018-08-09 18:11:10 +06:00
Aidaho12 4eec98d284 v2.8.1
Bugs
2018-08-08 23:15:18 +06:00
Aidaho12 650b22e55c v2.8.1
Web acceleration
2018-08-08 18:06:23 +06:00
Aidaho12 eb77c165b8 v2.8 2018-08-07 11:41:48 +06:00
Aidaho12 3bf48cbdec v2.8 2018-08-07 11:32:14 +06:00
Aidaho12 cb803142d8 v2.8 2018-08-07 11:17:10 +06:00
Aidaho12 125d7ab81c v2.8 2018-08-07 09:47:43 +06:00
Aidaho12 4279b71e3a v2.8 2018-08-07 00:08:52 +06:00
Aidaho12 4232833dd1 v2.8 2018-08-06 22:18:12 +06:00
Aidaho12 04dfb0d98b v2.8 2018-08-06 20:19:31 +06:00
Aidaho12 89192f6a8d v2.8 2018-08-06 19:59:39 +06:00
Aidaho12 b02cc2fc07 v2.8
Bugs
2018-08-05 20:37:14 +06:00
Aidaho12 2cc270859f v2.8
Bugs
2018-08-04 20:44:09 +06:00
Aidaho12 a8c7b99db8 v2.8
Meet metrics! Now in HAProxy-WI you can see count incomning connections!
2018-08-04 01:17:03 +06:00
Aidaho12 7bec23f837 v2.7.3 2018-08-01 14:06:09 +06:00
Aidaho12 01fc3c49be v2.7.3
Bugs
2018-07-31 08:20:23 +06:00
Aidaho12 2715ecab29 v2.7.3
Alerting about HAProxy service state
2018-07-30 09:09:26 +06:00
Aidaho12 eebbf4354f v.2.7.2.2
Checker alert message improved
2018-07-29 00:14:12 +06:00
Aidaho12 b24eb38a3f v.2.7.2.2
Servers page protectd
2018-07-27 12:46:50 +06:00
Aidaho12 32be16a69d v2.7.2.1
Imptoved auto refresh
2018-07-27 09:45:49 +06:00
Aidaho12 008fdde04c v2.7.2 2018-07-26 10:49:58 +06:00
Aidaho12 f251338d06 v2.7.2 2018-07-26 10:24:51 +06:00
Aidaho12 cc139aa36c v2.7.2 2018-07-26 10:14:09 +06:00
Aidaho12 05fe5a64d5 v2.7.2
Improved install script
2018-07-25 21:57:42 +06:00
Aidaho12 b92b3ea34a v2.7.2
Bugs
2018-07-25 12:28:33 +06:00
Aidaho12 f16e5f4af7 v2.7.2
Settings telegram for Checker, bugs fix
2018-07-25 11:25:27 +06:00
Aidaho12 897e3dd126 v2.7.1
New logs, bugs fixed
2018-07-24 10:08:06 +06:00
Aidaho12 aecebbb49e v2.7
Bugs
2018-07-23 16:53:25 +06:00
Aidaho12 e902002ec5 v2.7
Alerting about changes backends state
2018-07-23 13:08:43 +06:00
Aidaho12 24074d5ee4 v2.6.3.1 2018-07-18 19:14:03 +06:00
Aidaho12 c98aeb6492 v2.6.3.1
ddos and slow post atacks pre-configure settings in add pages
2018-07-18 11:46:37 +06:00
Aidaho12 45aef7050b v2.6.3
SYN flood protect
2018-07-17 09:21:08 +06:00
Aidaho12 77ae8d1c40 v2.6.2.2
Improved compare
2018-07-16 10:52:43 +06:00
Aidaho12 60b83c9c8c v2.6.2.1
Ability to view SSL certificates
2018-07-13 10:28:21 +06:00
Aidaho12 5d3b74facf v2.6.2
Bugs
2018-07-10 18:03:28 +06:00
Aidaho12 bc87a22731 v2.6.2
Improved Overview page
2018-07-09 09:35:31 +06:00
Aidaho12 00aaa0a481 v2.6.1
Bugs
2018-07-07 15:43:31 +06:00
cclauss 038619f972
Catch the throw exception in variable e
The next line refers to __e__ twice but it is never defined.


flake8 testing of https://github.com/Aidaho12/haproxy-wi on Python 3.6.3

$ __flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics__
```
./app/delver.py:58:36: F821 undefined name 'e'
					stderr = "Error: %s - %s." % (e.filename,e.strerror)
                                   ^
./app/delver.py:58:47: F821 undefined name 'e'
					stderr = "Error: %s - %s." % (e.filename,e.strerror)
                                              ^
2     F821 undefined name 'e'
2
```
2018-07-05 18:16:57 +02:00
Aidaho12 c8914a3f12 v2.6.1
Bugs, style
2018-07-05 13:03:26 +06:00
Aidaho12 92d9b5639a v2.6.1
Bugs
2018-06-29 12:07:24 +06:00
Aidaho12 0e85e79b70 v2.6.1
Manage servers and cred by groups
2018-06-28 11:55:07 +06:00
Aidaho12 540e9acab1 v2.6
Each server has its own creds!
2018-06-24 15:31:28 +06:00
Aidaho12 96ed5b6fda v2.5.6.2 2018-06-20 13:21:16 +06:00
Aidaho12 80202a76e1 v2.5.6.2 2018-06-18 14:44:58 +06:00
Aidaho12 2228bab9d5 v2.5.6.2 2018-06-13 19:55:52 +06:00
Aidaho12 567a855765 v2.5.6.2 2018-06-13 19:12:34 +06:00
Aidaho12 8dc6dda1b1 v2.5.6.2
Improved Versions pages
2018-06-11 21:05:57 +06:00
Aidaho12 c559c1cc9c v2.5.6.1
Add fornentd/backend to Overview page
Bug fixed
2018-06-06 21:29:30 +06:00
Aidaho12 aac1335506 v2.5.6
onselect change
2018-06-05 15:18:54 +06:00
Aidaho12 cba232ac34 v2.5.6
bugs
2018-06-04 16:05:49 +06:00
Aidaho12 c6c494c809 v2.5.6
Need more security!!
bugs
2018-06-01 18:27:58 +06:00
Aidaho12 c85f7003f0 v2.5.5
Login page
Bug fixed
2018-05-31 20:25:20 +06:00
Aidaho12 f59eaa9b1e v2.5.5
APT support!
2018-05-31 00:09:02 +06:00
Aidaho12 5f4879177b v2.5.4.5
Bug fixed
2018-05-29 15:53:20 +06:00
Aidaho12 fe7b682cba v2.5.4.5
Logs time range
2018-05-19 00:09:14 +06:00
Aidaho12 c270d5d144 v2.5.4.4
Meet version 2.5.4.4! Improved reading of the config and output of errors!
2018-05-17 14:13:54 +06:00
Aidaho12 06b023cf45 v2.5.4.3
Stats page
2018-05-16 10:16:07 +06:00
Aidaho12 1bb9b8e17d v2.5.4.3
Managing servers through stats page
2018-05-14 00:14:33 +06:00
Aidaho12 8777d65598 v2.5.4.3
Managing servers through stats page
2018-05-14 00:07:33 +06:00
Aidaho12 d1ba6f1568 v2.5.4.2
Improved Add pages
2018-05-13 01:25:45 +06:00
Aidaho12 6726b92617 v2.5.4.2
improved Add pages
2018-05-13 00:11:58 +06:00
Aidaho12 d0671d8a40 v2.5.4.2
Improved Add pages
2018-05-12 22:41:07 +06:00
Aidaho12 3c76043935 v2.5.4.2
Improved Add pages
2018-05-12 21:49:24 +06:00
Aidaho12 08637d37a3 v2.5.4.1
Menu
2018-05-11 17:55:48 +06:00
Aidaho12 a58f938503 v2.5.4.1
Modal confirm
2018-05-10 23:25:45 +06:00
Aidaho12 045f263767 v2.5.4.1
accelerated work page overview
2018-05-09 18:21:09 +06:00
Aidaho12 89b0ec5fbe v2.5.4
Bugs fix
2018-05-08 15:12:16 +06:00
Aidaho12 9b76d5e21e v2.5.4
View Apache logs, bugs fix
2018-05-08 01:09:56 +06:00
Aidaho12 02d5f9ab6b v2.5.3
Now ssh credentials keep in DB, it's more user-frendly and and safer
2018-05-07 19:24:22 +06:00
Aidaho12 ff069069b5 v2.5.2
sudo support
2018-05-07 01:58:52 +06:00
Aidaho12 31382f4648 v2.5.1 2018-05-06 23:07:13 +06:00
Aidaho12 ff5fced563 v2.5.1
Dos2unix. view exist ssl certs, small change, and bugs
2018-05-06 10:45:10 +06:00
Aidaho12 ef9ffe530c v2.5
Welcome, Jinja2!
code is optimized
2018-05-05 18:40:41 +06:00
Aidaho12 8c8ddc1820 v2.4
Bugs
2018-05-03 23:22:54 +06:00
Aidaho12 24a326727a v2.4
Bug fixed
2018-05-03 12:36:50 +06:00
Aidaho12 4a121235b8 v2.4
More security!
Redesigned authorization system
Small change and bugs
2018-05-02 17:11:22 +06:00
Aidaho12 d26d949105 v2.3.2
update script
2018-05-01 15:00:30 +06:00
Aidaho12 d84a6f531b v2.3.1
Check ssh access before add new server
bug fixed
2018-05-01 12:28:19 +06:00
Aidaho12 8734ac10aa v2.3.1
Bugs
2018-04-30 21:39:01 +06:00
Aidaho12 329ed1beab v2.3.1
1. Intallation HAProxy
2. Supptort proxy
2018-04-30 12:04:21 +06:00
Aidaho12 a4b35b52d0 v2.3
bugs
2018-04-28 23:55:55 +06:00
Aidaho12 7a9d21d7f5 v2.3
bugs
2018-04-28 21:49:07 +06:00
Aidaho12 be58ce10c3 v2.3 2018-04-28 21:09:27 +06:00
Aidaho12 ac1945b48e v2.3
add an alternate vrrp
2018-04-28 20:42:38 +06:00