1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00
filebot/installer/spk/scripts/start-stop-status

24 lines
240 B
Bash
Executable File

#!/bin/sh
case "$1" in
start)
exit 0
;;
stop)
exit 0
;;
status)
if [ -x "/usr/local/bin/$SYNOPKG_PKGNAME" ] && [ -x "$SYNOPKG_PKGDEST/$SYNOPKG_PKGNAME.sh" ]; then
exit 0
else
exit 150
fi
;;
log)
exit 0
;;
esac