config_freebsd.go 257 B

12345678
  1. package config
  2. // FIXME(thaJeztah): ExecRoot is only used for Controller.startExternalKeyListener(), but "libnetwork-setkey" is only implemented on Linux.
  3. func optionExecRoot(execRoot string) Option {
  4. return func(c *Config) {
  5. c.ExecRoot = execRoot
  6. }
  7. }