1 //go:build !linux 2 // +build !linux 3 4 package apparmor 5 6 func isEnabled() bool { 7 return false 8 } 9 10 func applyProfile(name string) error { 11 if name != "" { 12 return ErrApparmorNotEnabled 13 } 14 return nil 15 } 16
View as plain text