2021-08-23 13:14:53 +00:00
|
|
|
//go:build !linux
|
2016-03-18 18:50:19 +00:00
|
|
|
// +build !linux
|
|
|
|
|
2018-02-05 21:05:59 +00:00
|
|
|
package daemon // import "github.com/docker/docker/daemon"
|
2016-03-18 18:50:19 +00:00
|
|
|
|
2016-12-05 13:12:17 +00:00
|
|
|
func ensureDefaultAppArmorProfile() error {
|
|
|
|
return nil
|
2016-03-18 18:50:19 +00:00
|
|
|
}
|
2020-10-09 17:20:48 +00:00
|
|
|
|
|
|
|
// DefaultApparmorProfile returns an empty string.
|
|
|
|
func DefaultApparmorProfile() string {
|
|
|
|
return ""
|
|
|
|
}
|