bump runc to v1.1.10

Signed-off-by: tao.yang <tao.yang@daocloud.io>
This commit is contained in:
tao.yang
2023-11-06 10:42:39 +08:00
parent 24e6b03780
commit bb315d1339
10 changed files with 82 additions and 25 deletions

View File

@@ -49,6 +49,9 @@ func MkdirAllNewAs(path string, mode os.FileMode, ownerUID, ownerGID int) error
if err := os.Chown(pathComponent, ownerUID, ownerGID); err != nil {
return err
}
if err := os.Chmod(pathComponent, mode); err != nil {
return err
}
}
return nil
}