1
0
mirror of https://github.com/mitb-archive/filebot synced 2025-01-13 06:48:04 -05:00
filebot/installer/spk/scripts/start-stop-status
2016-04-05 18:06:09 +00:00

28 lines
256 B
Bash

#!/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 1
fi
;;
log)
exit 0
;;
*)
exit 1
;;
esac