mirror of https://github.com/containers/podman.git
13 lines
305 B
Go
13 lines
305 B
Go
package apparmor
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
// DefaultLibpodProfile is the name of default libpod AppArmor profile.
|
|
DefaultLibpodProfile = "libpod-default"
|
|
// ErrApparmorUnsupported indicates that AppArmor support is not supported.
|
|
ErrApparmorUnsupported = errors.New("AppArmor is not supported")
|
|
)
|