Update quecmanager_services

This commit is contained in:
Cameron Thompson
2025-03-13 22:38:37 -04:00
parent d68dd62d51
commit 1a43b740b4

View File

@@ -32,8 +32,11 @@ start_service() {
procd_set_param stderr 1 procd_set_param stderr 1
procd_close_instance procd_close_instance
echo "Signal Metrics Logger started" echo "Signal Metrics Logger started"
echo "Starting QuecManager Cell Locking service..."
service quecmanager_cell_locking start service quecmanager_cell_locking start
echo "Starting QuecManager Profiles service..."
service quecprofiles start service quecprofiles start
echo "Starting QuecManager QuecWatch service..."
service quecwatch start service quecwatch start
echo "All QuecManager services Started" echo "All QuecManager services Started"
@@ -42,7 +45,10 @@ start_service() {
stop_service() { stop_service() {
# procd will handle stopping all instances automatically # procd will handle stopping all instances automatically
echo "Stopping QuecManager services." echo "Stopping QuecManager services."
echo "Stopping QuecManager Cell Locking service..."
service quecmanager_cell_locking stop service quecmanager_cell_locking stop
echo "Stopping QuecManager Profiles service..."
service quecprofiles stop service quecprofiles stop
echo "Stopping QuecManager QuecWatch service..."
service quecwatch stop service quecwatch stop
} }