????
Your IP : 3.19.239.158
Current Path : /bin/ |
|
Current File : //bin/cloudlinux-awp-user |
#!/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/OS Admin with cPanel'},
)
cll = CloudlinuxWposUser()
return cll.run(sys.argv[1:])
if __name__ == "__main__":
sys.exit(main())