This commit is contained in:
Jae Kwon 2015-04-16 18:35:27 -07:00
parent f641558115
commit 9dd37c6bc4
2 changed files with 6 additions and 0 deletions

4
cmd/barak/README.md Normal file
View File

@ -0,0 +1,4 @@
```bash
# Maybe in a screen session:
cat cmd/barak/seed | ./build/barak
```

View File

@ -85,8 +85,10 @@ func Create(mode int, label string, execPath string, args []string, input string
func Stop(proc *Process, kill bool) error { func Stop(proc *Process, kill bool) error {
if kill { if kill {
fmt.Printf("Killing process %v\n", proc.Cmd.Process)
return proc.Cmd.Process.Kill() return proc.Cmd.Process.Kill()
} else { } else {
fmt.Printf("Stopping process %v\n", proc.Cmd.Process)
return proc.Cmd.Process.Signal(os.Interrupt) return proc.Cmd.Process.Signal(os.Interrupt)
} }
} }