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
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
20 lines
550 B
Bash
Executable File
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
|