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 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
__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. |
# -*- 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 manager utility main run function """ import sys from .cmdline_parser import cmd_parser_manager, parse_cmd_arguments from .validations import validate from ..internal.utils import configure_logging from ..internal.constants import manager_log from ..manager import initialize_manager from ..internal.exceptions import SSAError def run() -> None: """ Main run function """ configure_logging(manager_log) try: args = parse_cmd_arguments(cmd_parser_manager()) cmd, validated_args = validate(args.__dict__) except SSAError as e: print(e) sys.exit(1) manager_run(cmd, **validated_args) def manager_run(command, *args, **kwargs): """ SSA Manager run function """ try: manager_instance = initialize_manager() if command == 'set-config': result = manager_instance.set_config(kwargs) elif command == 'get-config': result = manager_instance.get_config() elif command == 'get-ssa-status': result = manager_instance.get_ssa_status() elif command == 'enable-ssa': result = manager_instance.enable_ssa() elif command == 'disable-ssa': result = manager_instance.disable_ssa() elif command == 'get-report': result = manager_instance.get_report() elif command == 'get-stat': result = manager_instance.get_stats() else: raise SSAError(f'Unknown action {command}') print(result) except SSAError as e: print(e) sys.exit(1)
SILENT KILLER Tool