Hot fix for version 2.28

This commit is contained in:
Russel Yasol
2025-08-24 18:13:37 +08:00
parent 752fce41b4
commit 8e99618f2a
157 changed files with 1609 additions and 478 deletions

View File

@@ -43,6 +43,19 @@ start_service() {
procd_close_instance
echo "QCAINFO Interpreter started"
# Start ping daemon
echo "Starting Ping Daemon..."
procd_open_instance
procd_set_param command /www/cgi-bin/services/ping_daemon.sh
procd_set_param respawn
procd_set_param stdout 1
procd_set_param stderr 1
procd_close_instance
echo "Ping Daemon started"
# Memory daemon is now managed dynamically by memory_settings.sh
# It will be added/removed from this file automatically based on user configuration
echo "All QuecManager services Started"
}