Initial RK1 media-center image project

This commit is contained in:
2026-08-17 18:42:29 +00:00
commit 5fe41e79e9
81 changed files with 5725 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
#!/bin/sh
set -e
if command -v deb-systemd-helper >/dev/null 2>&1; then
if [ "$1" = purge ]; then
deb-systemd-helper purge kodi-rk.service >/dev/null || true
fi
fi
if [ -d /run/systemd/system ]; then
systemctl daemon-reload >/dev/null || true
fi
# Deliberately retain /var/lib/kodi and the locked account on removal. The
# media database and settings must never be deleted by a package uninstall.
exit 0