chore: add deploy helper scripts and move interval to SCAN_INTERVAL env in nssm configs to standardize service setup

This commit is contained in:
2025-08-07 11:13:08 +02:00
parent c496c5793b
commit 7b82af7006
3 changed files with 17 additions and 30 deletions

View File

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