update rc.local stop case

pull/1017/head
gtxaspec 2023-10-02 00:58:48 -07:00
parent c5f3043377
commit 2779f0fb62
1 changed files with 4 additions and 2 deletions

View File

@ -22,9 +22,11 @@ case "$1" in
restart|reload)
start
;;
stop)
# Intentionally left blank, no need to stop rc.local
;;
*)
echo "Usage: $0 {start|restart|reload}"
echo "Usage: $0 {start|stop|restart|reload}"
exit 1
;;
esac