diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2018-08-06 11:35:29 -0400 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-08-07 14:16:26 +0000 |
commit | 33d6221ae34103d68753156ff2638802817dfa16 (patch) | |
tree | 11ed782c99565d37e33a178bf2da627ea1b33a77 /libpod/oci_unsupported.go | |
parent | b1de943eea26bf1f6a6c599116cba3e7d9fe5d36 (diff) | |
download | podman-33d6221ae34103d68753156ff2638802817dfa16.tar.gz podman-33d6221ae34103d68753156ff2638802817dfa16.tar.bz2 podman-33d6221ae34103d68753156ff2638802817dfa16.zip |
Have info print conmon/oci runtime information
We need into to identify the OCI runtime and conmon used by podman.
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Closes: #1224
Approved by: baude
Diffstat (limited to 'libpod/oci_unsupported.go')
-rw-r--r-- | libpod/oci_unsupported.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libpod/oci_unsupported.go b/libpod/oci_unsupported.go index 409bb117e..8cb4994d3 100644 --- a/libpod/oci_unsupported.go +++ b/libpod/oci_unsupported.go @@ -18,3 +18,11 @@ func newPipe() (parent *os.File, child *os.File, err error) { func (r *OCIRuntime) createContainer(ctr *Container, cgroupParent string) (err error) { return ErrNotImplemented } + +func (r *OCIRuntime) pathPackage() string { + return "" +} + +func (r *OCIRuntime) conmonPackage() string { + return "" +} |