Linux ams-business-8.hostwindsdns.com 4.18.0-553.80.1.lve.el8.x86_64 #1 SMP Wed Oct 22 19:29:36 UTC 2025 x86_64
LiteSpeed
Server IP : 192.236.177.161 & Your IP : 216.73.216.50
Domains :
Cant Read [ /etc/named.conf ]
User : ajzdfbpz
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
python2.7 /
site-packages /
hw_cpbackup /
Delete
Unzip
Name
Size
Permission
Date
Action
util
[ DIR ]
drwxr-xr-x
2023-10-21 18:57
__init__.py
15.16
KB
-rw-r--r--
2023-10-21 18:57
__init__.pyc
12.95
KB
-rw-r--r--
2023-10-21 18:57
active_backups.py
10.63
KB
-rw-r--r--
2023-10-21 18:57
active_backups.pyc
9.68
KB
-rw-r--r--
2023-10-21 18:57
main.py
1.2
KB
-rw-r--r--
2023-10-21 18:57
main.pyc
1.79
KB
-rw-r--r--
2023-10-21 18:57
Save
Rename
import logging import click from hw_cpbackup import SharedBackupsAgent, __version__ from hw_cpbackup.util.log import logger try: from pathlib import Path except ImportError: from pathlib2 import Path @click.group(no_args_is_help=True) @click.version_option(__version__) @click.option('--debug', is_flag=True, type=bool, help='enable debug logging') @click.option('--dry-run', is_flag=True, type=bool, help='review without changes') @click.pass_context def cli(ctx, debug, dry_run): """Hostwinds Shared Backups Agent""" if debug: logger.setLevel(logging.DEBUG) ctx.ensure_object(dict) ctx.obj['dry_run'] = dry_run @cli.command() @click.option('--clean', '-c', is_flag=True, type=bool, help='clean prior artifacts') @click.option('--force', '-f', is_flag=True, type=bool, help='force backup process') @click.option('--no-alert', '-n', is_flag=True, type=bool, help='disable channel alerts') @click.option('--user', '-u', type=str, help="target user") @click.pass_context def run(ctx, clean, force, no_alert, user=None): """Run Shared Backups""" dry_run = ctx.obj['dry_run'] sba = SharedBackupsAgent(clean, force, alert=not no_alert, dry_run=dry_run) sba.run(user=user)