Merge pull request #2198 from kirbyfan64/better-refresh-rootless-error

Show a better error message when podman info fails during a refresh
This commit is contained in:
OpenShift Merge Robot 2019-01-21 23:32:15 +01:00 committed by GitHub
commit ed5ac815c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -824,7 +824,11 @@ func (r *Runtime) refreshRootless() error {
// Take advantage of a command that requires a new userns
// so that we are running as the root user and able to use refresh()
cmd := exec.Command(os.Args[0], "info")
return cmd.Run()
err := cmd.Run()
if err != nil {
return errors.Wrapf(err, "Error running %s info while refreshing state", os.Args[0])
}
return nil
}
// Reconfigures the runtime after a reboot