mirror of
https://github.com/mudler/luet.git
synced 2025-09-06 01:30:29 +00:00
17 lines
316 B
Go
17 lines
316 B
Go
// +build !windows,!linux
|
|
|
|
package chrootarchive // import "github.com/docker/docker/pkg/chrootarchive"
|
|
|
|
import "golang.org/x/sys/unix"
|
|
|
|
func chroot(path string) error {
|
|
if err := unix.Chroot(path); err != nil {
|
|
return err
|
|
}
|
|
return unix.Chdir("/")
|
|
}
|
|
|
|
func realChroot(path string) error {
|
|
return chroot(path)
|
|
}
|