internal/router: fix missing Run() call

This commit is contained in:
Cuong Manh Le
2023-06-08 02:23:44 +07:00
committed by Cuong Manh Le
parent 53f8d006f0
commit b9eb89c02e

View File

@@ -20,7 +20,7 @@ func setupPfsense() error {
_ = exec.Command("killall", "unbound").Run()
// If Pfsense is in DNS Forwarder mode, ensure no dnsmasq processes running.
_ = exec.Command("killall", "dnsmasq")
_ = exec.Command("killall", "dnsmasq").Run()
return nil
}