mirror of
https://github.com/containers/podman.git
synced 2025-11-03 15:56:51 +08:00
Update the login tests to reflect the latest changes to allow http{s}
prefixes (again) to address bugzilla.redhat.com/show_bug.cgi?id=2062072.
Signed-off-by: Valentin Rothberg <vrothberg@redhat.com>
22 lines
337 B
Go
22 lines
337 B
Go
//go:build linux || darwin
|
|
// +build linux darwin
|
|
|
|
package umask
|
|
|
|
import (
|
|
"syscall"
|
|
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
func Check() {
|
|
oldUmask := syscall.Umask(0022) //nolint
|
|
if (oldUmask & ^0022) != 0 {
|
|
logrus.Debugf("umask value too restrictive. Forcing it to 022")
|
|
}
|
|
}
|
|
|
|
func Set(value int) int {
|
|
return syscall.Umask(value)
|
|
}
|