Files
omarchy-sc/packaging/prerm
T
2026-08-31 20:38:41 +02:00

9 lines
220 B
Bash

#!/bin/sh
set -e
if [ "$1" = remove ] || [ "$1" = deconfigure ]; then
if command -v systemctl >/dev/null 2>&1; then
systemctl disable --now citizen-launcher-self-update.timer >/dev/null 2>&1 || true
fi
fi
exit 0