1fccb39316
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
24 lines
638 B
Go
24 lines
638 B
Go
package idtools // import "github.com/docker/docker/pkg/idtools"
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/docker/docker/pkg/system"
|
|
)
|
|
|
|
const (
|
|
SeTakeOwnershipPrivilege = "SeTakeOwnershipPrivilege"
|
|
)
|
|
|
|
const (
|
|
ContainerAdministratorSidString = "S-1-5-93-2-1"
|
|
ContainerUserSidString = "S-1-5-93-2-2"
|
|
)
|
|
|
|
// This is currently a wrapper around MkdirAll, however, since currently
|
|
// permissions aren't set through this path, the identity isn't utilized.
|
|
// Ownership is handled elsewhere, but in the future could be support here
|
|
// too.
|
|
func mkdirAs(path string, _ os.FileMode, _ Identity, _, _ bool) error {
|
|
return system.MkdirAll(path, 0)
|
|
}
|