Current Path: > > opt > cloudlinux > venv > lib64 > python3.11 > site-packages > clsummary
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 | 271 bytes | June 05 2025 10:38:47. | |
arg_parse.py | File | 2289 bytes | June 05 2025 10:38:47. | |
hardware_statistics.py | File | 3910 bytes | June 05 2025 10:38:47. | |
rpm_packages_statistics.py | File | 4200 bytes | June 05 2025 10:38:47. | |
storage.py | File | 2532 bytes | June 05 2025 10:38:47. | |
summary.py | File | 138108 bytes | June 05 2025 10:38:47. | |
utils.py | File | 11252 bytes | June 05 2025 10:38:47. |
# -*- coding: utf-8 -*- # Copyright © Cloud Linux GmbH & Cloud Linux Software, Inc 2010-2019 All Rights Reserved # # Licensed under CLOUD LINUX LICENSE AGREEMENT # http://cloudlinux.com/docs/LICENSE.TXT from docopt import docopt from docopt import DocoptExit from schema import Schema, SchemaError, Or, Use def parse_cloudlinux_summary_opts(argv): """ Parse arguments for cloudlinux-summary command :param argv: sys.argv :return cortege: (error_flag, s_message) """ # program name prog_name = "cloudlinux-summary" docstring = f"""Utility to get Cloudlinux usage statistics Usage: {prog_name} [--json] [--send] [--force-collect] [--lve-id <int>] [--async] {prog_name} status [--json] {prog_name} rpm-packages [--json] [--lve-id <int>] [--send] [--force-collect] {prog_name} get-remote [--json] [--lve-id <int>] {prog_name} enable [--json] [--lve-id <int>] {prog_name} disable [--json] [--lve-id <int>] {prog_name} enable-rpm [--json] {prog_name} disable-rpm [--json] {prog_name} (-h | --help) Options: --json Return data in JSON format. --send Send summary to the CloudLinux server --force-collect Ignore global settings.json when collecting statistics --lve-id <int> LVE for summary script. For internal use only. --async Start background process collecting statistics, return immediately -h, --help Show this help message and exit """ try: args = docopt(docstring, argv) except DocoptExit: s_error_string = 'ERROR: Invalid parameter passed' return False, s_error_string s = Schema({ "get-remote": bool, "rpm-packages": bool, "status": bool, "enable": bool, "disable": bool, "enable-rpm": bool, "disable-rpm": bool, "--json": bool, "--send": bool, "--force-collect": bool, "--help": bool, "--lve-id": Or(Use(int), None), "--async": bool, }) try: args = s.validate(args) status = True except SchemaError as e: args = str(e) status = False return status, args
SILENT KILLER Tool