diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2019-02-15 10:53:30 +0100 |
---|---|---|
committer | Giuseppe Scrivano <gscrivan@redhat.com> | 2019-02-15 10:53:50 +0100 |
commit | 71782812fef6cc8ce97aeefaecb3468597c840b9 (patch) | |
tree | 8ef5416ccf3d1b2c82cc5f02fb4b5f8443c3a9c4 | |
parent | 81ace5caaca844eda4be48245590ea54bdd0cba3 (diff) | |
download | podman-71782812fef6cc8ce97aeefaecb3468597c840b9.tar.gz podman-71782812fef6cc8ce97aeefaecb3468597c840b9.tar.bz2 podman-71782812fef6cc8ce97aeefaecb3468597c840b9.zip |
rootless: open the correct file
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
-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 c975f628b..b01674be0 100644 --- a/libpod/runtime.go +++ b/libpod/runtime.go @@ -389,7 +389,7 @@ func NewRuntime(options ...RuntimeOption) (runtime *Runtime, err error) { // If the configuration file was not found but we are running in rootless, a subset of the // global config file is used. for _, path := range []string{OverrideConfigPath, ConfigPath} { - contents, err := ioutil.ReadFile(OverrideConfigPath) + contents, err := ioutil.ReadFile(path) if err != nil { // Ignore any error, the file might not be readable by us. continue |