Skip to content

Commit

Permalink
version change
Browse files Browse the repository at this point in the history
  • Loading branch information
usmannasir committed Nov 24, 2024
1 parent aecb420 commit 68832c4
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CLScript/CLMain.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ def __init__(self):
self.path = '/usr/local/CyberCP/version.txt'
#versionInfo = json.loads(open(self.path, 'r').read())
self.version = '2.3'
self.build = '8'
self.build = '9'

ipFile = "/etc/cyberpanel/machineIP"
f = open(ipFile)
Expand Down
2 changes: 1 addition & 1 deletion baseTemplate/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
# Create your views here.

VERSION = '2.3'
BUILD = 8
BUILD = 9


@ensure_csrf_cookie
Expand Down
2 changes: 1 addition & 1 deletion install/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import stat

VERSION = '2.3'
BUILD = 8
BUILD = 9

char_set = {'small': 'abcdefghijklmnopqrstuvwxyz', 'nums': '0123456789', 'big': 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'}

Expand Down
2 changes: 1 addition & 1 deletion loginSystem/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# Create your views here.

VERSION = '2.3'
BUILD = 8
BUILD = 9


def verifyLogin(request):
Expand Down
2 changes: 1 addition & 1 deletion plogical/adminPass.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from baseTemplate.models import version

VERSION = '2.3'
BUILD = 8
BUILD = 9

if not os.geteuid() == 0:
sys.exit("\nOnly root can run this script\n")
Expand Down
2 changes: 1 addition & 1 deletion plogical/backupUtilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
pass

VERSION = '2.3'
BUILD = 8
BUILD = 9


## I am not the monster that you think I am..
Expand Down
2 changes: 1 addition & 1 deletion plogical/upgrade.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import string

VERSION = '2.3'
BUILD = 8
BUILD = 9

CENTOS7 = 0
CENTOS8 = 1
Expand Down
2 changes: 1 addition & 1 deletion serverStatus/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
### Version

VERSION = '2.3'
BUILD = 8
BUILD = 9


def serverStatusHome(request):
Expand Down

0 comments on commit 68832c4

Please sign in to comment.