open-consul/sdk/iptables/iptables_executor_unsupported.go
R.B. Boyer 83bf7ab3ff
re-run gofmt on 1.17 (#11579)
This should let freshly recompiled golangci-lint binaries using Go 1.17
pass 'make lint'
2021-11-16 12:04:01 -06:00

22 lines
517 B
Go

//go:build !linux
// +build !linux
package iptables
import "errors"
// iptablesExecutor implements IptablesProvider and errors out on any non-linux OS.
type iptablesExecutor struct {
cfg Config
}
func (i *iptablesExecutor) AddRule(_ string, _ ...string) {}
func (i *iptablesExecutor) ApplyRules() error {
return errors.New("applying traffic redirection rules with 'iptables' is not supported on this operating system; only linux OS is supported")
}
func (i *iptablesExecutor) Rules() []string {
return nil
}