Heray-Was-Here
Server : Apache
System : Linux vps37394.inmotionhosting.com 3.10.0-1160.119.1.vz7.224.4 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
User : jasonp18 ( 1000)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /opt/dedrads/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //opt/dedrads/account-review
#!/usr/lib/rads/venv/bin/python3
"""Shows relevant information about cPanel users and UltraStack accounts"""
# pylint:disable=invalid-name

from pathlib import Path

from account_review import (
    cpanel_display_user,
    ultrastack_display_account,
    get_users_from_args,
)


# Define the paths to check
wordpress_ultrastack_path = Path("/etc/ansible/wordpress-ultrastack")
cpanel_bin_directory = Path("/usr/local/cpanel/bin")

# Check if the WordPress Ultrastack file exists
if wordpress_ultrastack_path.exists():
    ultrastack_display_account()
# Check if the cPanel directory exists
elif cpanel_bin_directory.exists():
    cpanel_display_user(get_users_from_args())
else:
    print(
        "Neither cPanel or Platform I UltraStack: "
        + "No relevant file or directory found."
    )

Hry