From f87f0abb77f27a868d03656cf0458e2f0a88ca5f Mon Sep 17 00:00:00 2001 From: Matthew Heon Date: Mon, 8 Oct 2018 11:08:14 -0400 Subject: Pass along syslog variable to podman cleanup processes As of now, there is no way to debug podman clean up processes. They are started by conmon with no stdout/stderr and log nowhere. This allows us to actually figure out what is going on when a cleanup process runs. Signed-off-by: Matthew Heon --- cmd/podman/create.go | 1 + 1 file changed, 1 insertion(+) (limited to 'cmd/podman') diff --git a/cmd/podman/create.go b/cmd/podman/create.go index 574137271..e442e5c03 100644 --- a/cmd/podman/create.go +++ b/cmd/podman/create.go @@ -782,6 +782,7 @@ func parseCreateOpts(ctx context.Context, c *cli.Context, runtime *libpod.Runtim WorkDir: workDir, Rootfs: rootfs, VolumesFrom: c.StringSlice("volumes-from"), + Syslog: c.GlobalBool("syslog"), } if config.Privileged { -- cgit v1.2.3-54-g00ecf