Skip to content

Commit

Permalink
fix webui restart msg
Browse files Browse the repository at this point in the history
  • Loading branch information
hobbyquaker committed Jun 6, 2018
1 parent 619568e commit e74810b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion addon_files/redmatic/redmatic
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Stop () {
if [ "$PSPID" != "" ]
then
echo -n "Stopping Node-RED: "
kill $1 $PSPID 2>/dev/null
kill $1 $PSPID 2>/dev/null || true
sleep 1
kill -0 $PSPID 2>/dev/null
if [ $? -eq 0 ]
Expand Down Expand Up @@ -53,6 +53,7 @@ case "$1" in
Stop
sleep 1
Start
exit 0
;;

info)
Expand Down

0 comments on commit e74810b

Please sign in to comment.