Current Path: > > opt > cloudlinux > venv > lib64 > python3.11 > site-packages > wmt > common
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
__pycache__ | Directory | - | - | |
__init__.py | File | 270 bytes | June 09 2025 16:45:51. | |
config.py | File | 4769 bytes | June 09 2025 16:45:51. | |
const.py | File | 1081 bytes | June 09 2025 16:45:51. | |
exceptions.py | File | 942 bytes | June 09 2025 16:45:51. | |
notification.py | File | 10200 bytes | June 09 2025 16:45:51. | |
report.py | File | 5474 bytes | June 09 2025 16:45:51. | |
service.py | File | 807 bytes | June 09 2025 16:45:51. | |
url_parser.py | File | 465 bytes | June 09 2025 16:45:51. | |
utils.py | File | 5370 bytes | June 09 2025 16:45:51. |
#!/opt/cloudlinux/venv/bin/python3 -bb # coding=utf-8 # # Copyright © Cloud Linux GmbH & Cloud Linux Software, Inc 2010-2020 All Rights Reserved # # Licensed under CLOUD LINUX LICENSE AGREEMENT # http://cloudlinux.com/docs/LICENCE.TXT # import platform from wmt.common.exceptions import WmtServiceControlException from wmt.common.utils import disable_wmt_daemon, enable_wmt_daemon def set_service_state(service_name, action): _is_cl6 = 'el6' in platform.release() if not _is_cl6: service_name = service_name + '.service' try: if action == 'start': enable_wmt_daemon(service_name, _is_cl6) elif action == 'stop': disable_wmt_daemon(service_name, _is_cl6) except Exception as e: raise WmtServiceControlException(service_name, str(e))
SILENT KILLER Tool