Files
rk1/media/packaging/prerm
T

9 lines
155 B
Bash
Raw Permalink Normal View History

2026-08-17 18:42:29 +00:00
#!/bin/sh
set -e
if [ "$1" = remove ] && [ -d /run/systemd/system ]; then
systemctl --no-reload stop kodi-rk.service >/dev/null 2>&1 || true
fi
exit 0