This commit is contained in:
mike
2026-06-12 01:53:06 +02:00
parent e49caf7f6a
commit 2d0322465d
8 changed files with 380 additions and 0 deletions

18
tour-comfy/stop.sh Executable file
View File

@@ -0,0 +1,18 @@
#!/bin/bash
# Stop and disable systemd services for Qwen-Image-Edit
set -e
if [[ $EUID -ne 0 ]]; then
echo "This script must be run as root (use sudo)"
exit 1
fi
echo "Stopping services..."
systemctl stop comfyui-api.service
systemctl stop comfyui-backend.service
echo "Disabling services..."
systemctl disable comfyui-api.service
systemctl disable comfyui-backend.service
echo "Services stopped and disabled."