chore: add NSSM scripts for directory cleaners and remove old single-service script to standardize deployment across targets

This commit is contained in:
2025-08-07 11:08:07 +02:00
parent c85208f884
commit c496c5793b
5 changed files with 90 additions and 11 deletions

9
nssm_rmall.sh Normal file
View File

@@ -0,0 +1,9 @@
#!/bin/bash
# Remove all services
services=$(nssm list | grep "DirectoryCleaner" | awk '{print $1}')
for service in $services; do
echo "Removing $service"
nssm remove "$service" confirm
done