diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2017-11-05 06:43:20 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-05 06:43:20 -0500 |
commit | b06190e0da66f45cbe6a44d79065fabcd00ea19c (patch) | |
tree | e50aa13cd31b63d797cabe4b9157599bf2f36898 /cmd/kpod/spec.go | |
parent | 098389dc3e7bbba7c266ad24c909f3a5422e2908 (diff) | |
parent | 0026075d59b5e6e90786ed21825ac43d4f59fa5a (diff) | |
download | podman-b06190e0da66f45cbe6a44d79065fabcd00ea19c.tar.gz podman-b06190e0da66f45cbe6a44d79065fabcd00ea19c.tar.bz2 podman-b06190e0da66f45cbe6a44d79065fabcd00ea19c.zip |
Merge pull request #8 from baude/clicontext
Clicontext
Diffstat (limited to 'cmd/kpod/spec.go')
-rw-r--r-- | cmd/kpod/spec.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cmd/kpod/spec.go b/cmd/kpod/spec.go index d30c0d1a5..b990d8463 100644 --- a/cmd/kpod/spec.go +++ b/cmd/kpod/spec.go @@ -11,7 +11,6 @@ import ( "github.com/projectatomic/libpod/libpod" ann "github.com/projectatomic/libpod/pkg/annotations" "github.com/sirupsen/logrus" - "github.com/urfave/cli" "golang.org/x/sys/unix" ) @@ -464,7 +463,7 @@ func (c *createConfig) GetTmpfsMounts() []spec.Mount { return m } -func (c *createConfig) GetContainerCreateOptions(cli *cli.Context) ([]libpod.CtrCreateOption, error) { +func (c *createConfig) GetContainerCreateOptions() ([]libpod.CtrCreateOption, error) { var options []libpod.CtrCreateOption // Uncomment after talking to mheon about unimplemented funcs |