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

23 lines
169 B
Bash
Raw Normal View History

2018-07-04 11:15:07 -04:00
#!/bin/sh
case "$1" in
start)
exit 0
;;
stop)
exit 0
;;
restart)
$0 stop
$0 start
;;
*)
echo "Usage: $0 {start|stop|restart}"
exit 1
esac
exit 0