From 1d5f1bb0f5689be2f0262163ec05930e233f0ad0 Mon Sep 17 00:00:00 2001 From: Gaurav Date: Thu, 30 Apr 2015 18:08:03 +0530 Subject: [PATCH] Make use of iptablesPath variable which has the path of iptables, instead of using string iptables directly Signed-off-by: Gaurav --- pkg/iptables/iptables.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/iptables/iptables.go b/pkg/iptables/iptables.go index 0cfcca7502..9983ec61ff 100644 --- a/pkg/iptables/iptables.go +++ b/pkg/iptables/iptables.go @@ -261,7 +261,7 @@ func Exists(table Table, chain string, rule ...string) bool { // parse "iptables -S" for the rule (this checks rules in a specific chain // in a specific table) ruleString := strings.Join(rule, " ") - existingRules, _ := exec.Command("iptables", "-t", string(table), "-S", chain).Output() + existingRules, _ := exec.Command(iptablesPath, "-t", string(table), "-S", chain).Output() // regex to replace ips in rule // because MASQUERADE rule will not be exactly what was passed