| Server IP : 104.21.37.246 / Your IP : 172.71.28.146 [ Web Server : Apache System : Linux cpanel01wh.bkk1.cloud.z.com 2.6.32-954.3.5.lve1.4.59.el6.x86_64 #1 SMP Thu Dec 6 05:11:00 EST 2018 x86_64 User : cp648411 ( 1354) PHP Version : 7.2.34 Disable Function : NONE Domains : 0 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/2388321/root/proc/2388322/root/usr/sbin/ |
Upload File : |
#!/opt/alt/python37/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/LICENCE.TXT
import os
import cpanel
from clwpos.constants import EA_PHP_PREFIX
from clwpos.optimization_features import OBJECT_CACHE_FEATURE
from clwpos.feature_suites import is_module_allowed_for_user
from clwpos.utils import is_wpos_supported, acquire_lock
def main():
"""
Configures redis ext if needed when wpos supported and module is enabled
"""
if is_wpos_supported() and is_module_allowed_for_user(OBJECT_CACHE_FEATURE):
with acquire_lock(os.path.join('/var/run', EA_PHP_PREFIX), attempts=1):
cpanel.configure_redis_extension_for_ea()
if __name__ == "__main__":
main()