diff options
author | Peter Hunt <pehunt@redhat.com> | 2019-05-20 13:58:31 -0400 |
---|---|---|
committer | Peter Hunt <pehunt@redhat.com> | 2019-05-28 11:10:57 -0400 |
commit | 51bdf29f0493827ce3eb278a193d0a7402add896 (patch) | |
tree | 685eb00a699d96bc0f5174ee7b9b7d51d6a851b9 /libpod/oci.go | |
parent | 02f971131a3bb71615d15a45df808edd0fa88266 (diff) | |
download | podman-51bdf29f0493827ce3eb278a193d0a7402add896.tar.gz podman-51bdf29f0493827ce3eb278a193d0a7402add896.tar.bz2 podman-51bdf29f0493827ce3eb278a193d0a7402add896.zip |
Address comments
Signed-off-by: Peter Hunt <pehunt@redhat.com>
Diffstat (limited to 'libpod/oci.go')
-rw-r--r-- | libpod/oci.go | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/libpod/oci.go b/libpod/oci.go index a3e44bcce..7138108c5 100644 --- a/libpod/oci.go +++ b/libpod/oci.go @@ -42,12 +42,6 @@ const ( // NsRunDir is the default directory in which running network namespaces // are stored NsRunDir = "/var/run/netns" - - // JournaldLogging is the string conmon expects to specify journald logging - JournaldLogging = "journald" - - // KubernetesLogging is the string conmon expects when specifying to use the kubernetes logging format - KubernetesLogging = "k8s-file" ) // OCIRuntime represents an OCI-compatible runtime that libpod can call into @@ -409,7 +403,6 @@ func (r *OCIRuntime) execContainer(c *Container, cmd, capAdd, env []string, tty // Append container ID, name and command args = append(args, c.ID()) args = append(args, cmd...) - args = append(args, c.Name()) logrus.Debugf("Starting runtime %s with following arguments: %v", r.path, args) |