diff --git a/send.go b/send.go index 01125c0..727cbc9 100644 --- a/send.go +++ b/send.go @@ -79,7 +79,7 @@ func sendMachine(s string) error { log.Info("Got to apt install", line) parts := strings.Fields(line) if len(parts) > 1 { - cmd := []string{"apt", "update"} + cmd := []string{"apt"} cmd = append(cmd, parts[1:]...) log.Info("Got to parts =", parts) log.Info("Got to cmd =", cmd)