summaryrefslogtreecommitdiff
path: root/cmd/podman/common/create.go
diff options
context:
space:
mode:
authorDaniel J Walsh <dwalsh@redhat.com>2020-06-05 10:44:16 -0400
committerDaniel J Walsh <dwalsh@redhat.com>2020-06-05 13:01:57 -0400
commitc8f57b71a4255938efa23fec37c59181c1c657e4 (patch)
tree0195dcfa6421bbb079e2b75918250eb5e7d4a2ae /cmd/podman/common/create.go
parentc448c03269139dabf6f6fa7ff0fedb2291018b2a (diff)
downloadpodman-c8f57b71a4255938efa23fec37c59181c1c657e4.tar.gz
podman-c8f57b71a4255938efa23fec37c59181c1c657e4.tar.bz2
podman-c8f57b71a4255938efa23fec37c59181c1c657e4.zip
Fix handling of systemd.
Systemd enablement has to happen on the server side, since we need check if the image is running systemd. Also need to make sure user setting the StopSignal is not overriden on the server side. But if not set and using systemd, we set it correctly. Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'cmd/podman/common/create.go')
-rw-r--r--cmd/podman/common/create.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/common/create.go b/cmd/podman/common/create.go
index 4d4dea0d2..86cd51643 100644
--- a/cmd/podman/common/create.go
+++ b/cmd/podman/common/create.go
@@ -424,7 +424,7 @@ func GetCreateFlags(cf *ContainerCLIOpts) *pflag.FlagSet {
"Sysctl options",
)
createFlags.StringVar(
- &cf.SystemdD,
+ &cf.Systemd,
"systemd", "true",
`Run container in systemd mode ("true"|"false"|"always")`,
)