| Server IP : 213.136.93.164 / Your IP : 216.73.216.20 Web Server : Apache System : Linux m14200.contabo.net 5.14.0-611.54.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed May 6 18:03:03 EDT 2026 x86_64 User : ki692510 ( 1047) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /opt/cloudlinux/venv/lib64/python3.11/site-packages/clcagefslib/webisolation/ |
Upload File : |
#!/opt/cloudlinux/venv/bin/python3 -sbb
# -*- 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/LICENCE.TXT
#
import os
import shutil
import subprocess
SERVICE_NAME = "cagefs-docroot-monitor.service"
SERVICE_PATH = f"/usr/share/cagefs/service/{SERVICE_NAME}"
SYSTEMD_UNIT_PATH = f"/etc/systemd/system/{SERVICE_NAME}"
def is_running():
result = subprocess.run(
["/usr/bin/systemctl", "is-active", SERVICE_NAME], capture_output=True, text=True
)
return result.returncode == 0
def start_monitoring_service():
if is_running():
return
shutil.copy(SERVICE_PATH, SYSTEMD_UNIT_PATH)
result = subprocess.run(
["/usr/bin/systemctl", "enable", SERVICE_NAME], capture_output=True, text=True, check=True
)
if result.returncode:
return
result = subprocess.run(
["/usr/bin/systemctl", "daemon-reload"], capture_output=True, text=True, check=True
)
if result.returncode:
return
subprocess.run(
["/usr/bin/systemctl", "start", SERVICE_NAME], capture_output=True, text=True, check=True
)
def stop_monitoring_service():
if is_running():
subprocess.run(
["/usr/bin/systemctl", "stop", SERVICE_NAME], capture_output=True, text=True, check=True
)
# disable may fail if the unit file was never installed — that's fine
subprocess.run(
["/usr/bin/systemctl", "disable", SERVICE_NAME], capture_output=True, text=True
)
if os.path.exists(SYSTEMD_UNIT_PATH):
os.remove(SYSTEMD_UNIT_PATH)
subprocess.run(
["/usr/bin/systemctl", "daemon-reload"], capture_output=True, text=True, check=True
)