16 lines
368 B
Go
16 lines
368 B
Go
// +build selinux,linux
|
|
|
|
package buildah
|
|
|
|
import (
|
|
"github.com/opencontainers/runtime-tools/generate"
|
|
selinux "github.com/opencontainers/selinux/go-selinux"
|
|
)
|
|
|
|
func setupSelinux(g *generate.Generator, processLabel, mountLabel string) {
|
|
if processLabel != "" && selinux.GetEnabled() {
|
|
g.SetProcessSelinuxLabel(processLabel)
|
|
g.SetLinuxMountLabel(mountLabel)
|
|
}
|
|
}
|