2016-12-19 07:22:45 -05:00
|
|
|
//+build !windows
|
|
|
|
|
2018-02-05 16:05:59 -05:00
|
|
|
package daemon // import "github.com/docker/docker/daemon"
|
2016-12-19 07:22:45 -05:00
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/docker/docker/container"
|
2018-01-11 14:53:06 -05:00
|
|
|
"github.com/docker/docker/errdefs"
|
2016-12-19 07:22:45 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
func (daemon *Daemon) saveApparmorConfig(container *container.Container) error {
|
|
|
|
container.AppArmorProfile = "" //we don't care about the previous value.
|
|
|
|
|
|
|
|
if !daemon.apparmorEnabled {
|
|
|
|
return nil // if apparmor is disabled there is nothing to do here.
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := parseSecurityOpt(container, container.HostConfig); err != nil {
|
2017-11-28 23:09:37 -05:00
|
|
|
return errdefs.InvalidParameter(err)
|
2016-12-19 07:22:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if !container.HostConfig.Privileged {
|
|
|
|
if container.AppArmorProfile == "" {
|
|
|
|
container.AppArmorProfile = defaultApparmorProfile
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
container.AppArmorProfile = "unconfined"
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|