Docker-DCO-1.1-Signed-off-by: Guillaume J. Charmes <guillaume.charmes@docker.com> (github: creack)
13 lines
153 B
Go
13 lines
153 B
Go
// +build !apparmor
|
|
|
|
package apparmor
|
|
|
|
import ()
|
|
|
|
func IsEnabled() bool {
|
|
return false
|
|
}
|
|
|
|
func ApplyProfile(pid int, name string) error {
|
|
return nil
|
|
}
|