📁 File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-29 08:41:25
📂
/
/
opt
/
imunify360
/
venv
/
lib
/
python3.11
/
site-packages
/
defence360agent
/
migrations
✏️
Editing: 149_make_config_inactive.py
""" This migration is needed to cleanup modsec config on cPanel by removing includes for modsec2.imunify.conf File is automatically included from /etc/apache2/conf.d, thus no explicit includes are needed """ import logging import subprocess logger = logging.getLogger(__name__) def migrate(migrator, database, fake=False, **kwargs): if fake: return for conf in ["includes/modsec2.imunify.conf", "modsec2.imunify.conf"]: try: subprocess.run( [ "/usr/sbin/whmapi1", "modsec_make_config_inactive", "config={}".format(conf), ], check=True, ) except FileNotFoundError: pass except Exception: logger.exception("Failed to make %s inactive", conf) def rollback(migrator, database, fake=False, **kwargs): pass
💾 Save Changes
❌ Cancel