|
Server : Apache System : Linux cvar2.toservers.com 3.10.0-962.3.2.lve1.5.73.el7.x86_64 #1 SMP Wed Aug 24 21:31:23 UTC 2022 x86_64 User : njnconst ( 1116) PHP Version : 8.4.18 Disable Function : NONE Directory : /bin/ |
Upload File : |
#!/opt/alt/python37/bin/python3 -sbb
# -*- coding: utf-8 -*-
# cloudlinux-config Utility to check Cloudlinux config
#
# 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
import sys
from clwpos.user.wpos_user import CloudlinuxWposUser
from clwpos.utils import error_and_exit, is_wpos_supported
def main():
"""
Main run function
"""
if not is_wpos_supported():
error_and_exit(
True,
{'result': f'Unable to run {sys.argv[0]} utility, '
'AccelerateWP is supported only on CloudLinux Shared Pro/Solo OS with cPanel'},
)
cll = CloudlinuxWposUser()
return cll.run(sys.argv[1:])
if __name__ == "__main__":
sys.exit(main())