Jelajahi Sumber

daemon: move custom seccomp profile warning from CLI to daemon side

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Sebastiaan van Stijn 4 tahun lalu
induk
melakukan
04f932ac86
1 mengubah file dengan 3 tambahan dan 0 penghapusan
  1. 3 0
      daemon/info.go

+ 3 - 0
daemon/info.go

@@ -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() {