Commit 33786408 authored by Matthew Holt's avatar Matthew Holt

Startup/shutdown commands now have stdin

parent 9a78857b
......@@ -40,6 +40,7 @@ func registerCallback(c *Controller, list *[]func() error) error {
fn := func() error {
cmd := exec.Command(command, args...)
cmd.Stdin = os.Stdin
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment