SILENT KILLERPanel

Current Path: > > opt > cloudlinux > venv > lib64 > python3.11 > site-packages > ssa > ssa_utils >


Operation   : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Software     : Apache
Server IP    : 162.0.232.56 | Your IP: 216.73.216.111
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: //opt/cloudlinux/venv/lib64/python3.11/site-packages/ssa/ssa_utils/

NameTypeSizeLast ModifiedActions
__pycache__ Directory - -
__init__.py File 0 bytes July 02 2025 14:54:48.
cmdline_parser.py File 5412 bytes July 02 2025 14:54:48.
run_agent.py File 733 bytes July 02 2025 14:54:48.
run_autotracing.py File 2937 bytes July 02 2025 14:54:48.
run_manager.py File 1814 bytes July 02 2025 14:54:48.
validations.py File 3594 bytes July 02 2025 14:54:48.

Reading File: //opt/cloudlinux/venv/lib64/python3.11/site-packages/ssa/ssa_utils//run_agent.py

# -*- 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/LICENSE.TXT

"""
This module contains SSA Agent main run function
"""
import sys

from ssa.agent import SimpleAgent as Agent
from ssa.internal.constants import agent_log
from ssa.internal.exceptions import SSAError
from ssa.internal.tools import register_sigterm
from ssa.internal.utils import configure_logging


def run() -> None:
    """
    Main run function
    """
    configure_logging(agent_log)
    register_sigterm()

    try:
        agent = Agent()
        agent()
    except SSAError as e:
        print(e)
        sys.exit(1)

SILENT KILLER Tool