mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-02 08:25:02 -04:00
24 lines
240 B
Bash
24 lines
240 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 150
|
|
fi
|
|
;;
|
|
|
|
log)
|
|
exit 0
|
|
;;
|
|
esac
|