Server IP : 184.154.167.98 / Your IP : 13.58.224.40 Web Server : Apache System : Linux pink.dnsnetservice.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 User : puertode ( 1767) PHP Version : 8.2.26 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/l.v.e-manager/cpanel/ |
Upload File : |
#!/opt/cloudlinux/venv/bin/python3 -bb # coding:utf-8 # Copyright © Cloud Linux GmbH & Cloud Linux Software, Inc 2010-2019 All Rights Reserved # # Licensed under CLOUD LINUX LICENSE AGREEMENT # http://cloudlinux.com/docs/LICENSE.TXT from __future__ import absolute_import from __future__ import division from __future__ import print_function import sys from clcommon.public_hooks.bundle import cpanel from clcommon.public_hooks import setup_logger_and_sentry _BASE_DIR = '/usr/share/l.v.e-manager' _HOOKS = [ cpanel.Hook( _BASE_DIR + '/utils/cache_phpdata.py --native', 'Whostmgr', 'Lang::PHP::set_system_default_version', 'post'), ] def main(argv): """ Install or delete cpanel event hook """ if "-i" in argv: success = cpanel.install_hooks(_HOOKS) elif "-d" in argv: success = cpanel.remove_hooks(_HOOKS) else: raise NotImplementedError('unknown option') return int(not success) if "__main__" == __name__: # in fact this is only wrapper for # hooks logic located in cllib # so we can just use cllib sentry here setup_logger_and_sentry() sys.exit(main(sys.argv[1:]))