diff --git a/CLScript/CLMain.py b/CLScript/CLMain.py index 8755edcaa..1f7bf1943 100644 --- a/CLScript/CLMain.py +++ b/CLScript/CLMain.py @@ -5,7 +5,7 @@ class CLMain(): self.path = '/usr/local/CyberCP/version.txt' #versionInfo = json.loads(open(self.path, 'r').read()) self.version = '2.4' - self.build = '0' + self.build = '1' ipFile = "/etc/cyberpanel/machineIP" f = open(ipFile) diff --git a/baseTemplate/views.py b/baseTemplate/views.py index 57ffada4c..587612117 100755 --- a/baseTemplate/views.py +++ b/baseTemplate/views.py @@ -21,7 +21,7 @@ from plogical.httpProc import httpProc # Create your views here. VERSION = '2.4' -BUILD = 0 +BUILD = 1 @ensure_csrf_cookie diff --git a/install/install.py b/install/install.py index 6291ff48e..6241a84f4 100755 --- a/install/install.py +++ b/install/install.py @@ -16,7 +16,7 @@ import stat import secrets VERSION = '2.4' -BUILD = 0 +BUILD = 1 char_set = {'small': 'abcdefghijklmnopqrstuvwxyz', 'nums': '0123456789', 'big': 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'} diff --git a/loginSystem/views.py b/loginSystem/views.py index 9a35c76f5..8f8d07c89 100644 --- a/loginSystem/views.py +++ b/loginSystem/views.py @@ -17,7 +17,7 @@ from django.utils import translation # Create your views here. VERSION = '2.4' -BUILD = 0 +BUILD = 1 def verifyLogin(request): diff --git a/plogical/adminPass.py b/plogical/adminPass.py index c6c226664..09a3cabb0 100755 --- a/plogical/adminPass.py +++ b/plogical/adminPass.py @@ -13,7 +13,7 @@ from packages.models import Package from baseTemplate.models import version VERSION = '2.4' -BUILD = 0 +BUILD = 1 if not os.geteuid() == 0: sys.exit("\nOnly root can run this script\n") diff --git a/plogical/backupUtilities.py b/plogical/backupUtilities.py index 6561ba956..e67f73faa 100755 --- a/plogical/backupUtilities.py +++ b/plogical/backupUtilities.py @@ -54,7 +54,7 @@ except: pass VERSION = '2.4' -BUILD = 0 +BUILD = 1 ## I am not the monster that you think I am.. diff --git a/plogical/upgrade.py b/plogical/upgrade.py index dc5c8a3e5..42e8b6b2d 100755 --- a/plogical/upgrade.py +++ b/plogical/upgrade.py @@ -18,7 +18,7 @@ import random import string VERSION = '2.4' -BUILD = 0 +BUILD = 1 CENTOS7 = 0 CENTOS8 = 1 diff --git a/serverStatus/views.py b/serverStatus/views.py index 6a655159e..a387cd966 100755 --- a/serverStatus/views.py +++ b/serverStatus/views.py @@ -26,7 +26,7 @@ EXPIRE = 3 ### Version VERSION = '2.4' -BUILD = 0 +BUILD = 1 def serverStatusHome(request):