// SYSTEM PANEL //
[ROOT]
/
opt
/
cloudlinux
/
venv
/
lib
/
python3.11
/
site-packages
/
ssa
/
internal
[ PARENT ]
EDIT :: __init__.py
import os staging_flag_file = '/opt/cloudlinux/staging_mode' def staging() -> bool: """ Is staging enabled """ return os.path.isfile(staging_flag_file)
SAVE
CANCEL