diff options
author | Matthew Heon <matthew.heon@gmail.com> | 2018-01-04 16:56:51 -0500 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-01-08 20:48:31 +0000 |
commit | 21881679099491049db367504d09f9a48d3e5fa7 (patch) | |
tree | 2e9595d44d510bed28730893a9fd3b969a2c8bb4 /libpod | |
parent | 5c5c024e80a9c78e94f8d3d7d13755b27dd9a8bf (diff) | |
download | podman-21881679099491049db367504d09f9a48d3e5fa7.tar.gz podman-21881679099491049db367504d09f9a48d3e5fa7.tar.bz2 podman-21881679099491049db367504d09f9a48d3e5fa7.zip |
Remove vendored files unnecessary after Kube hostport removal
Signed-off-by: Matthew Heon <matthew.heon@gmail.com>
Closes: #189
Approved by: mheon
Diffstat (limited to 'libpod')
-rw-r--r-- | libpod/runtime.go | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/libpod/runtime.go b/libpod/runtime.go index 2a659a1e3..aed6acd86 100644 --- a/libpod/runtime.go +++ b/libpod/runtime.go @@ -20,16 +20,16 @@ type RuntimeOption func(*Runtime) error // Runtime is the core libpod runtime type Runtime struct { - config *RuntimeConfig - state State - store storage.Store - storageService *storageService - imageContext *types.SystemContext - ociRuntime *OCIRuntime - lockDir string - netPlugin ocicni.CNIPlugin - valid bool - lock sync.RWMutex + config *RuntimeConfig + state State + store storage.Store + storageService *storageService + imageContext *types.SystemContext + ociRuntime *OCIRuntime + lockDir string + netPlugin ocicni.CNIPlugin + valid bool + lock sync.RWMutex } // RuntimeConfig contains configuration options used to set up the runtime |