13 lines
179 B
Go
13 lines
179 B
Go
|
package conformance
|
||
|
|
||
|
import (
|
||
|
selinux "github.com/opencontainers/selinux/go-selinux"
|
||
|
)
|
||
|
|
||
|
func selinuxMountFlag() string {
|
||
|
if selinux.GetEnabled() {
|
||
|
return ":Z"
|
||
|
}
|
||
|
return ""
|
||
|
}
|