summaryrefslogtreecommitdiff
path: root/libpod/container_internal_unsupported.go
blob: 05a587c594034380140c25c157e523e8c2395edb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// +build !linux

package libpod

import (
	"context"

	"github.com/containers/libpod/libpod/define"
	spec "github.com/opencontainers/runtime-spec/specs-go"
)

func (c *Container) mountSHM(shmOptions string) error {
	return define.ErrNotImplemented
}

func (c *Container) unmountSHM(mount string) error {
	return define.ErrNotImplemented
}

func (c *Container) prepare() (err error) {
	return define.ErrNotImplemented
}

func (c *Container) cleanupNetwork() error {
	return define.ErrNotImplemented
}

func (c *Container) generateSpec(ctx context.Context) (*spec.Spec, error) {
	return nil, define.ErrNotImplemented
}

func (c *Container) checkpoint(ctx context.Context, options ContainerCheckpointOptions) error {
	return define.ErrNotImplemented
}

func (c *Container) restore(ctx context.Context, options ContainerCheckpointOptions) error {
	return define.ErrNotImplemented
}

func (c *Container) copyOwnerAndPerms(source, dest string) error {
	return nil
}

func (c *Container) refreshCNI() error {
	return define.ErrNotImplemented
}