chore: add NSSM deploy/start/stop/remove scripts and debug runner to manage DirectoryForbidder services and local debugging
This commit is contained in:
10
nssm_startall.sh
Normal file
10
nssm_startall.sh
Normal 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
|
Reference in New Issue
Block a user