c8aad704dd
Signed-off-by: Antonio Murdaca <runcom@redhat.com>
13 lines
290 B
Go
13 lines
290 B
Go
// +build !apparmor
|
|
|
|
package apparmor
|
|
|
|
// IsEnabled returns false, when build without apparmor build tag.
|
|
func IsEnabled() bool {
|
|
return false
|
|
}
|
|
|
|
// EnsureDefaultApparmorProfile dose nothing, when build without apparmor build tag.
|
|
func EnsureDefaultApparmorProfile() error {
|
|
return nil
|
|
}
|