a813d7e961
It's a no-op on Windows and other non-Linux, non-FreeBSD platforms, so there's no need to register the re-exec. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
11 lines
228 B
Go
11 lines
228 B
Go
//go:build !linux && !freebsd
|
|
// +build !linux,!freebsd
|
|
|
|
package libnetwork
|
|
|
|
// no-op on non linux systems
|
|
func (c *Controller) startExternalKeyListener() error {
|
|
return nil
|
|
}
|
|
|
|
func (c *Controller) stopExternalKeyListener() {}
|