diff options
Diffstat (limited to 'libpod/boltdb_state_unsupported.go')
-rw-r--r-- | libpod/boltdb_state_unsupported.go | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/libpod/boltdb_state_unsupported.go b/libpod/boltdb_state_unsupported.go index 960faa911..4565c1890 100644 --- a/libpod/boltdb_state_unsupported.go +++ b/libpod/boltdb_state_unsupported.go @@ -6,12 +6,12 @@ import ( "github.com/sirupsen/logrus" ) -// parseNetNSBoltData sets ctr.state.NetNS, if any, from netNSBytes. -// Returns true if the data is valid. -func parseNetNSBoltData(ctr *Container, netNSBytes []byte) bool { - if netNSBytes != nil { - logrus.Errorf("error loading %s: network namespaces are not supported on this platform", ctr.ID()) - return false - } - return true +// replaceNetNS is exclusive to the Linux platform and is a no-op elsewhere +func replaceNetNS(netNSPath string, ctr *Container, newState *containerState) error { + return nil +} + +// getNetNSPath is exclusive to the Linux platform and is a no-op elsewhere +func getNetNSPath(ctr *Container) string { + return } |