9 lines
155 B
Bash
Executable File
9 lines
155 B
Bash
Executable File
#!/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
|