Some checks failed
CI/CD Pipeline / Code Format (push) Failing after 12s
CI/CD Pipeline / Clippy Lints (push) Failing after 5m34s
CI/CD Pipeline / Unit Tests (push) Failing after 10m51s
CI/CD Pipeline / Build Debian Package (push) Failing after 1s
CI/CD Pipeline / Build RPM Package (push) Failing after 1s
CI/CD Pipeline / Build Alpine Package (push) Failing after 2s
CI/CD Pipeline / Build Arch Package (push) Failing after 2s
CI/CD Pipeline / Create Release (push) Has been skipped
CI/CD Pipeline / Security Audit (push) Failing after 15m40s
34 lines
873 B
Bash
Executable File
34 lines
873 B
Bash
Executable File
#!/bin/bash
|
|
# prerm script for linux-patch-api
|
|
# Created by package build system
|
|
|
|
set -e
|
|
|
|
# Stop the service before removal/upgrade
|
|
if [ "$1" = "remove" ] || [ "$1" = "upgrade" ]; then
|
|
echo "Stopping linux-patch-api service..."
|
|
|
|
if systemctl is-active --quiet linux-patch-api.service; then
|
|
systemctl stop linux-patch-api.service
|
|
echo "Service stopped successfully"
|
|
else
|
|
echo "Service was not running"
|
|
fi
|
|
|
|
# Disable the service
|
|
if systemctl is-enabled --quiet linux-patch-api.service 2>/dev/null; then
|
|
systemctl disable linux-patch-api.service
|
|
echo "Service disabled"
|
|
fi
|
|
fi
|
|
|
|
# Handle failed upgrade
|
|
if [ "$1" = "failed-upgrade" ]; then
|
|
echo "Upgrade failed - attempting to restore previous state"
|
|
# Previous version should handle restoration
|
|
fi
|
|
|
|
echo "Pre-removal script completed"
|
|
|
|
exit 0
|