Private
Public Access
1
0

chore: bump version to 0.3.3 for dpkg and service fixes

This commit is contained in:
2026-05-03 02:35:32 +00:00
parent 1dea4383f1
commit 06d338f41c
4 changed files with 12 additions and 34 deletions

View File

@ -39,18 +39,6 @@ if [ "$1" = "purge" ]; then
rm -rf /var/log/linux_patch_api
fi
# Remove system user
if getent passwd linux-patch-api > /dev/null 2>&1; then
echo "Removing user linux-patch-api..."
userdel linux-patch-api 2>/dev/null || true
fi
# Remove system group
if getent group linux-patch-api > /dev/null 2>&1; then
echo "Removing group linux-patch-api..."
groupdel linux-patch-api 2>/dev/null || true
fi
echo "linux-patch-api purged successfully"
fi