This commit is contained in:
mike
2026-06-27 00:44:56 +02:00
parent 78ffb029b9
commit 7eb544211e
30 changed files with 0 additions and 21597 deletions

View File

@@ -1,18 +0,0 @@
#!/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."