chore: add debug and NSSM deployment scripts to streamline local dev
and Windows service management
This commit is contained in:
10
nssm_stopall.sh
Normal file
10
nssm_stopall.sh
Normal file
@@ -0,0 +1,10 @@
|
||||
#!/bin/bash
|
||||
set -e
|
||||
|
||||
# Stop all services
|
||||
services=$(nssm list | grep "Hitman" | awk '{print $1}')
|
||||
|
||||
for service in $services; do
|
||||
echo "Stopping $service"
|
||||
nssm stop "$service"
|
||||
done
|
Reference in New Issue
Block a user