From 05f4dd9f41707959ce801f9851c79232a1b79dca Mon Sep 17 00:00:00 2001 From: umohnani8 Date: Mon, 11 Dec 2017 10:20:22 -0500 Subject: Clear up fragments of the old api As everything is being moved over to the new container api removing files that depended on the old api Signed-off-by: umohnani8 Closes: #116 Approved by: rhatdan --- libkpod/config.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'libkpod/config.go') diff --git a/libkpod/config.go b/libkpod/config.go index 84d3ce897..b95ff18ca 100644 --- a/libkpod/config.go +++ b/libkpod/config.go @@ -6,7 +6,6 @@ import ( "github.com/BurntSushi/toml" "github.com/opencontainers/selinux/go-selinux" - "github.com/projectatomic/libpod/oci" ) // Default paths if none are specified @@ -21,9 +20,9 @@ const ( apparmorProfileName = "crio-default" cniConfigDir = "/etc/cni/net.d/" cniBinDir = "/opt/cni/bin/" - cgroupManager = oci.CgroupfsCgroupsManager + cgroupManager = "" //oci.CgroupfsCgroupsManager lockPath = "/run/crio.lock" - containerExitsDir = oci.ContainerExitsDir + containerExitsDir = "" //oci.ContainerExitsDir ) // Config represents the entire set of configuration values that can be set for -- cgit v1.2.3-54-g00ecf