diff options
author | baude <bbaude@redhat.com> | 2019-01-10 12:15:33 -0600 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2019-01-11 11:30:28 -0600 |
commit | 43c6da22b976b6050f86dca50564a4c2b08caee0 (patch) | |
tree | b8cc80c9e8318ee72031c74a401567a5d5f68392 /pkg/spec | |
parent | 28c35cab8750f379a418e87ed6bd874a12ec158d (diff) | |
download | podman-43c6da22b976b6050f86dca50564a4c2b08caee0.tar.gz podman-43c6da22b976b6050f86dca50564a4c2b08caee0.tar.bz2 podman-43c6da22b976b6050f86dca50564a4c2b08caee0.zip |
Add darwin support for remote-client
Add the ability to cross-compile podman remote for OSX.
Also, add image exists and tag to remote-client.
Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'pkg/spec')
-rw-r--r-- | pkg/spec/config_unsupported.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pkg/spec/config_unsupported.go b/pkg/spec/config_unsupported.go index c2a58696d..160414878 100644 --- a/pkg/spec/config_unsupported.go +++ b/pkg/spec/config_unsupported.go @@ -26,3 +26,7 @@ func (c *CreateConfig) createBlockIO() (*spec.LinuxBlockIO, error) { func makeThrottleArray(throttleInput []string, rateType int) ([]spec.LinuxThrottleDevice, error) { return nil, errors.New("function not implemented") } + +func devicesFromPath(g *generate.Generator, devicePath string) error { + return errors.New("function not implemented") +} |