func Deploy(ct ctrl.Ctrl) error { ct.Out("deploying to host", ct.Host()) ct.Local(`echo -e "%s \n %s"`, "row1", "row2") ct.Remote(`echo %s > /tmp/n`, "42") return nil }
func Install(ct ctrl.Ctrl, name string) error { ct.Local("echo me") ct.Outf("In install for %s", name) return nil }