Fix handling of kill in daemon

This commit is contained in:
Dane Everitt
2019-04-21 12:27:53 -07:00
parent 8795e7d739
commit 3de40ddf98
2 changed files with 3 additions and 1 deletions

View File

@@ -131,6 +131,8 @@ func (wsh *WebsocketHandler) HandleInbound(m WebsocketMessage) error {
err = wsh.Server.Environment.Stop()
break
case "restart":
break
case "kill":
err = wsh.Server.Environment.Terminate(os.Kill)
break
}