17 lines
417 B
Bash
17 lines
417 B
Bash
#!/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
|