diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-06-23 00:18:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-23 00:18:52 +0200 |
commit | 22a7d60f18a60bda02b40b5f2489014ba5f1c651 (patch) | |
tree | 38c9a13282752014ebd9386c82c0dbc7e1b15b17 /pkg/specgen/container_validate.go | |
parent | 22942e392df57d0ae5cc8ebdd27d060e43206d62 (diff) | |
parent | 13cfdb0742ebf7fbf2d90e82e527a5386d030ab8 (diff) | |
download | podman-22a7d60f18a60bda02b40b5f2489014ba5f1c651.tar.gz podman-22a7d60f18a60bda02b40b5f2489014ba5f1c651.tar.bz2 podman-22a7d60f18a60bda02b40b5f2489014ba5f1c651.zip |
Merge pull request #6715 from mheon/fix_security_exclusive
Fix conflicts between privileged and other flags
Diffstat (limited to 'pkg/specgen/container_validate.go')
-rw-r--r-- | pkg/specgen/container_validate.go | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/pkg/specgen/container_validate.go b/pkg/specgen/container_validate.go index 45179343b..33bacecaf 100644 --- a/pkg/specgen/container_validate.go +++ b/pkg/specgen/container_validate.go @@ -61,10 +61,6 @@ func (s *SpecGenerator) Validate() error { // // ContainerSecurityConfig // - // groups and privileged are exclusive - if len(s.Groups) > 0 && s.Privileged { - return exclusiveOptions("Groups", "privileged") - } // capadd and privileged are exclusive if len(s.CapAdd) > 0 && s.Privileged { return exclusiveOptions("CapAdd", "privileged") |