filebot/installer/qpkg/shared/start-stop-status.sh

23 lines
169 B
Bash
Executable File

#!/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