1
0
mirror of https://github.com/tianon/gosu.git synced 2025-04-18 19:04:06 +03:00

Slightly better / more up-to-date comment in setup-user.go

This commit is contained in:
Tianon Gravi 2024-03-20 04:17:26 -07:00
parent 2176ec2214
commit 0396450a9d

View File

@ -7,9 +7,9 @@ import (
"golang.org/x/sys/unix"
)
// this function comes from libcontainer/init_linux.go
// we don't use that directly because we don't want the whole namespaces package imported here
// (also, because we need minor modifications and it's not even exported)
// this function comes from https://github.com/opencontainers/runc/blob/18c313be729dd02b17934af41e32116a28b4b3bf/libcontainer/init_linux.go#L472-L561
// we don't use that directly because it isn't exported *and* we don't want that whole package/runc imported here
// (also, because we need minor modifications)
// SetupUser changes the groups, gid, and uid for the user inside the container
func SetupUser(u string) error {