chore: add NSSM deploy/start/stop/remove scripts and debug runner to manage DirectoryForbidder services and local debugging

This commit is contained in:
2025-08-07 11:24:16 +02:00
parent d105184a1d
commit caf31f2187
6 changed files with 52 additions and 0 deletions

10
nssm_startall.sh Normal file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
set -e
# Start all services
services=$(nssm list | grep "DirectoryForbidder" | awk '{print $1}')
for service in $services; do
echo "Starting $service"
nssm start "$service"
done