summaryrefslogtreecommitdiff
path: root/pkg/apparmor/apparmor.go
blob: 8b9f99477e4740601872d3ccb81c6f27b43c9e4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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")
)