Linux evo.fastest-server.com 5.14.0-284.1101.el9.tuxcare.11.els11.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Aug 14 13:30:35 UTC 2026 x86_64
LiteSpeed
Server IP : 103.249.112.113 & Your IP : 216.73.217.135
Domains : 988 Domain
User : tanishks
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
l.v.e-manager /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2026-09-04 11:42
cl-server-flags
[ DIR ]
drwxr-xr-x
2026-09-04 11:42
cl.nodejs
[ DIR ]
drwxr-xr-x
2026-09-04 11:56
cl.python
[ DIR ]
drwxr-xr-x
2026-09-04 12:16
commons
[ DIR ]
drwxr-xr-x
2026-08-11 11:38
cpanel
[ DIR ]
drwxr-xr-x
2026-09-04 11:42
directadmin
[ DIR ]
drwxr-xr-x
2026-08-11 11:38
hooks
[ DIR ]
drwxr-xr-x
2026-08-11 11:38
panelless-version
[ DIR ]
drwxr-xr-x
2026-08-11 11:38
plesk
[ DIR ]
drwxr-xr-x
2026-08-11 11:38
scriptlets
[ DIR ]
drwxr-xr-x
2026-09-04 11:42
tmp
[ DIR ]
drwxr-xr-x
2026-09-04 11:42
utils
[ DIR ]
drwxr-xr-x
2026-09-04 11:42
copy_directory.py
9.58
KB
-rw-r--r--
2026-08-11 11:38
crontab.py
6.67
KB
-rw-r--r--
2026-08-11 11:38
detect_edition_changes.py
2
KB
-rwxr-xr-x
2026-08-11 11:38
exec_command.py
4.13
KB
-rw-r--r--
2026-08-11 11:38
feature_manager.py
1.74
KB
-rw-r--r--
2026-08-11 11:38
install-lvemanager-plugin.py
64.06
KB
-rwxr-xr-x
2026-08-11 11:38
lvemanager-config.json
298
B
-rw-r--r--
2026-09-04 12:15
version
9
B
-rw-r--r--
2026-09-04 11:42
Save
Rename
#!/opt/cloudlinux/venv/bin/python3 -bb # coding:utf-8 # Copyright © Cloud Linux GmbH & Cloud Linux Software, Inc 2010-2021 All Rights Reserved # # Licensed under CLOUD LINUX LICENSE AGREEMENT # http://cloudlinux.com/docs/LICENSE.TXT from __future__ import absolute_import from feature_manager import cpanel_fix_feature_manager, cpanel_remove_from_feature_list import cldetectlib as detect from clcommon.lib.cledition import is_cl_shared_edition, get_cl_edition_readable EDITION_CACHE_FILE = "/var/lve/cl_edition.cache" DISABLED_FEATURES_FOR_SHARED = { "name_list": ["lvewpos"], "install_json_list": ["cpanel/wpos/plugin/install.json"] } def main(): """ Main :return: None """ if detect.is_cpanel() and edition_changed(): process_feature_list() return print('No action required') def get_cl_edition_from_cache(): """ Red edition from cache file :return: String or None """ try: with open(EDITION_CACHE_FILE, 'r') as f: return f.read() except Exception: return def cache_cl_edition(edition): """ Save edition to cache file :param edition: :return: None """ try: with open(EDITION_CACHE_FILE, 'w') as f: return f.write(edition) except Exception as e: print("Cannot cache the edition: {}".format(str(e))) def edition_changed(): """ Detect if edition changed :return: Boolean """ current_edition = get_cl_edition_readable() cached_edition = get_cl_edition_from_cache() if current_edition != cached_edition: cache_cl_edition(current_edition) return True return False def process_feature_list(): """ Fix feature list and disable unsupported features for Shared Edition :return: None """ cpanel_fix_feature_manager(DISABLED_FEATURES_FOR_SHARED["install_json_list"]) if is_cl_shared_edition(): cpanel_remove_from_feature_list(DISABLED_FEATURES_FOR_SHARED["name_list"]) if __name__ == '__main__': main()