mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-09-03 14:17:50 +00:00
Merge pull request #3717 from rhatdan/errors
Don't log errors to the screen when XDG_RUNTIME_DIR is not set
This commit is contained in:
commit
d9ea4db396
1 changed files with 2 additions and 2 deletions
|
|
@ -26,7 +26,7 @@ func GetRootlessRuntimeDir() (string, error) {
|
|||
if runtimeDir == "" {
|
||||
tmpDir := filepath.Join("/run", "user", uid)
|
||||
if err := os.MkdirAll(tmpDir, 0700); err != nil {
|
||||
logrus.Errorf("unable to make temp dir %s", tmpDir)
|
||||
logrus.Debugf("unable to make temp dir %s", tmpDir)
|
||||
}
|
||||
st, err := os.Stat(tmpDir)
|
||||
if err == nil && int(st.Sys().(*syscall.Stat_t).Uid) == os.Geteuid() && st.Mode().Perm() == 0700 {
|
||||
|
|
@ -36,7 +36,7 @@ func GetRootlessRuntimeDir() (string, error) {
|
|||
if runtimeDir == "" {
|
||||
tmpDir := filepath.Join(os.TempDir(), fmt.Sprintf("run-%s", uid))
|
||||
if err := os.MkdirAll(tmpDir, 0700); err != nil {
|
||||
logrus.Errorf("unable to make temp dir %s", tmpDir)
|
||||
logrus.Debugf("unable to make temp dir %s", tmpDir)
|
||||
}
|
||||
st, err := os.Stat(tmpDir)
|
||||
if err == nil && int(st.Sys().(*syscall.Stat_t).Uid) == os.Geteuid() && st.Mode().Perm() == 0700 {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue