mirror of
https://github.com/containers/podman.git
synced 2025-11-13 01:29:06 +08:00
Update the recent events-log changes to fix the build error. [NO NEW TESTS NEEDED] since there's no functional change. Signed-off-by: Valentin Rothberg <vrothberg@redhat.com>
22 lines
339 B
Go
22 lines
339 B
Go
//go:build linux || darwin
|
|
// +build linux darwin
|
|
|
|
package umask
|
|
|
|
import (
|
|
"syscall"
|
|
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
func Check() {
|
|
oldUmask := syscall.Umask(0o022) //nolint
|
|
if (oldUmask & ^0o022) != 0 {
|
|
logrus.Debugf("umask value too restrictive. Forcing it to 022")
|
|
}
|
|
}
|
|
|
|
func Set(value int) int {
|
|
return syscall.Umask(value)
|
|
}
|