Files
xxxig/debian/prerm
T
wangdefaandClaude Opus 4.8 28bc2116fd
Build and Release / build-and-test (amd64, ubuntu) (push) Successful in 1m12s
Build and Release / build-and-test (amd64, alpine) (push) Successful in 1m21s
Build and Release / build-and-test (arm64, ubuntu) (push) Successful in 5m24s
Build and Release / build-and-test (arm64, alpine) (push) Successful in 6m8s
Build and Release / release (push) Has been skipped
初始化 XXXig 打包部署脚本与 CI 流水线
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-09 11:28:03 +08:00

20 lines
550 B
Bash
Executable File

#!/bin/sh
set -e
# 仅在卸载(remove)时停用服务;升级(upgrade)时保持运行与开机自启状态
if [ "$1" = "remove" ] && [ -d /run/systemd/system ]; then
for service in xxxig-server.service xxxig-daemon.service; do
if systemctl is-active --quiet "$service"; then
echo "Stopping $service..."
systemctl stop "$service"
fi
if systemctl is-enabled --quiet "$service"; then
echo "Disabling $service..."
systemctl disable "$service"
fi
done
fi
exit 0