daemon: move custom seccomp profile warning from CLI to daemon side
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
f8795ed364
commit
04f932ac86
1 changed files with 3 additions and 0 deletions
|
@ -176,6 +176,9 @@ func (daemon *Daemon) fillSecurityOptions(v *types.Info, sysInfo *sysinfo.SysInf
|
|||
if profile == "" {
|
||||
profile = config.SeccompProfileDefault
|
||||
}
|
||||
if profile != config.SeccompProfileDefault {
|
||||
v.Warnings = append(v.Warnings, "WARNING: daemon is not using the default seccomp profile")
|
||||
}
|
||||
securityOptions = append(securityOptions, fmt.Sprintf("name=seccomp,profile=%s", profile))
|
||||
}
|
||||
if selinux.GetEnabled() {
|
||||
|
|
Loading…
Reference in a new issue