Sindbad~EG File Manager

Current Path : /proc/thread-self/root/opt/imunify360/venv/lib64/python3.11/site-packages/defence360agent/migrations/
Upload File :
Current File : //proc/thread-self/root/opt/imunify360/venv/lib64/python3.11/site-packages/defence360agent/migrations/038_disabled_rules_import.py

import logging
from subprocess import check_call

from defence360agent.contracts.config import IConfig, LocalConfig
from defence360agent.utils import antivirus_mode

logger = logging.getLogger(__name__)


def migrate(
    migrator,
    database,
    fake=False,
    config_file: IConfig = LocalConfig(),
    **kwargs
):
    """Write your migrations here."""

    if fake:
        return

    config = config_file.config_to_dict()
    if not config:
        return
    # deleting "OSSEC" section
    config.pop("OSSEC", {})

    # deleting "MOD_SEC_BLOCK_BY_SEVERITY:ignore" field
    config.get("MOD_SEC_BLOCK_BY_SEVERITY", {}).pop("ignore", [])

    config_file.dict_to_config(config, overwrite=True, validate=False)


def rollback(migrator, database, fake=False, **kwargs):
    """Write your rollback migrations here."""
    pass

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists