mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
869e030bdd
Signed-off-by: Manuel Buil <mbuil@suse.com>
22 lines
453 B
Go
22 lines
453 B
Go
package util
|
|
|
|
import (
|
|
"bytes"
|
|
"os/exec"
|
|
)
|
|
|
|
// ExecCommand executes a command using the VPN binary
|
|
// In case of error != nil, the string returned var will have more information
|
|
func ExecCommand(command string, args []string) (string, error) {
|
|
var out, errOut bytes.Buffer
|
|
|
|
cmd := exec.Command(command, args...)
|
|
cmd.Stdout = &out
|
|
cmd.Stderr = &errOut
|
|
err := cmd.Run()
|
|
if err != nil {
|
|
return errOut.String(), err
|
|
}
|
|
return out.String(), nil
|
|
}
|