summaryrefslogtreecommitdiff
path: root/pkg/label/label.go
blob: 38f026bc5adbd31b2da733b3703f0e0770fd3eda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// +build !selinux !linux

package label

func GenLabels(options string) (string, string, error) {
	return "", "", nil
}

func FormatMountLabel(src string, mountLabel string) string {
	return src
}

func SetProcessLabel(processLabel string) error {
	return nil
}

func SetFileLabel(path string, fileLabel string) error {
	return nil
}

func GetPidCon(pid int) (string, error) {
	return "", nil
}

func Init() {
}