diff options
author | Matthew Heon <matthew.heon@pm.me> | 2019-02-18 16:50:44 -0500 |
---|---|---|
committer | Matthew Heon <matthew.heon@pm.me> | 2019-02-21 10:51:42 -0500 |
commit | 43db7734e8f66b55935b1e0416701e634dc47f8a (patch) | |
tree | 7f4f4a72d3a8c78c0c3c2b31102ad886f41194a2 /cmd | |
parent | f9c548219b6543959dd240618f8a922fdbcabc6d (diff) | |
download | podman-43db7734e8f66b55935b1e0416701e634dc47f8a.tar.gz podman-43db7734e8f66b55935b1e0416701e634dc47f8a.tar.bz2 podman-43db7734e8f66b55935b1e0416701e634dc47f8a.zip |
Add ability to get a runtime that renumbers
Signed-off-by: Matthew Heon <matthew.heon@pm.me>
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/podman/libpodruntime/runtime.go | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/cmd/podman/libpodruntime/runtime.go b/cmd/podman/libpodruntime/runtime.go index 0b9568b8d..2da78a923 100644 --- a/cmd/podman/libpodruntime/runtime.go +++ b/cmd/podman/libpodruntime/runtime.go @@ -8,8 +8,17 @@ import ( "github.com/pkg/errors" ) +// GerRuntimeRenumber gets a libpod runtime that will perform a lock renumber +func GetRuntimeRenumber(c *cliconfig.PodmanCommand) (*libpod.Runtime, error) { + return getRuntime(c, true) +} + // GetRuntime generates a new libpod runtime configured by command line options func GetRuntime(c *cliconfig.PodmanCommand) (*libpod.Runtime, error) { + return getRuntime(c, false) +} + +func getRuntime(c *cliconfig.PodmanCommand, renumber bool) (*libpod.Runtime, error) { options := []libpod.RuntimeOption{} storageOpts, volumePath, err := util.GetDefaultStoreOptions() |