chore: add NSSM scripts for directory cleaners and remove old single-service script to standardize deployment across targets
This commit is contained in:
9
nssm_startall.sh
Normal file
9
nssm_startall.sh
Normal file
@@ -0,0 +1,9 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Start all services
|
||||
services=$(nssm list | grep "DirectoryCleaner" | awk '{print $1}')
|
||||
|
||||
for service in $services; do
|
||||
echo "Starting $service"
|
||||
nssm start "$service"
|
||||
done
|
Reference in New Issue
Block a user