diff options
author | Matthew Heon <mheon@redhat.com> | 2018-12-03 15:38:35 -0500 |
---|---|---|
committer | Matthew Heon <mheon@redhat.com> | 2018-12-03 15:48:20 -0500 |
commit | 795fbba7695b03736acaf9abe75922404f5eea44 (patch) | |
tree | 9a6289e016efeeede1035169746ec8365236df7c /libpod | |
parent | 7c575bdce26b0cc5560bb5a8fe5ac680c2843903 (diff) | |
download | podman-795fbba7695b03736acaf9abe75922404f5eea44.tar.gz podman-795fbba7695b03736acaf9abe75922404f5eea44.tar.bz2 podman-795fbba7695b03736acaf9abe75922404f5eea44.zip |
Revert changes to GetDefaultStoreOptions
We don't need this for anything more than rootless work in Libpod
now, but Buildah still uses it as it was originally written, so
leave it intact as part of our API.
Signed-off-by: Matthew Heon <mheon@redhat.com>
Diffstat (limited to 'libpod')
-rw-r--r-- | libpod/runtime.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/runtime.go b/libpod/runtime.go index 8b5bc32b4..e69b63a24 100644 --- a/libpod/runtime.go +++ b/libpod/runtime.go @@ -280,7 +280,7 @@ func NewRuntime(options ...RuntimeOption) (runtime *Runtime, err error) { if rootless.IsRootless() { // If we're rootless, override the default storage config - storageConf, err := util.GetDefaultRootlessStoreOptions() + storageConf, err := util.GetDefaultStoreOptions() if err != nil { return nil, errors.Wrapf(err, "error retrieving rootless storage config") } |