|
output, err := exec.Command(path, args...).CombinedOutput()
|
|
output, err := exec.Command(path, args...).CombinedOutput()
|
|
return nil, fmt.Errorf("iptables failed: iptables %v: %s (%s)", strings.Join(args, " "), output, err)
|
|
return nil, fmt.Errorf("iptables failed: iptables %v: %s (%s)", strings.Join(args, " "), output, err)
|