diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2020-09-28 15:55:06 -0400 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2020-09-28 16:17:28 -0400 |
commit | 0d70df119539d818224b0d014602aaad2bd1b95e (patch) | |
tree | a1f4db621a686c8558a222ad66727cf0d63836d5 /cmd | |
parent | b0e70a6411d70d7ee7f1e9d6abedc2524b903609 (diff) | |
download | podman-0d70df119539d818224b0d014602aaad2bd1b95e.tar.gz podman-0d70df119539d818224b0d014602aaad2bd1b95e.tar.bz2 podman-0d70df119539d818224b0d014602aaad2bd1b95e.zip |
Ignore containers.conf sysctl when namespaces set to host
If user sets namespace to host, then default sysctls need to be ignored
that are specific to that namespace.
--net=host ignore sysctls that begin with net.
--ipc=host ignore fs.mqueue
--uts=host ignore kernel.domainname and kernel.hostname
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/podman/common/create.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/common/create.go b/cmd/podman/common/create.go index bb4726817..4efdf1164 100644 --- a/cmd/podman/common/create.go +++ b/cmd/podman/common/create.go @@ -448,7 +448,7 @@ func GetCreateFlags(cf *ContainerCLIOpts) *pflag.FlagSet { createFlags.StringSliceVar( &cf.Sysctl, - "sysctl", containerConfig.Sysctls(), + "sysctl", []string{}, "Sysctl options", ) createFlags.StringVar( |