diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-05-05 20:49:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-05 20:49:17 +0200 |
commit | 864aec8bb011a7a42cf0a2faca39f6e27118b805 (patch) | |
tree | 788d16fa62d44244150cab2105ac5fe937cd3c09 /pkg/domain/infra/runtime_abi_unsupported.go | |
parent | fb6eca50ba9e2dc652da0c33c72db70ab9da85e9 (diff) | |
parent | 25312bb5b4e2bd4e122703006fc85bbf080e5e7c (diff) | |
download | podman-864aec8bb011a7a42cf0a2faca39f6e27118b805.tar.gz podman-864aec8bb011a7a42cf0a2faca39f6e27118b805.tar.bz2 podman-864aec8bb011a7a42cf0a2faca39f6e27118b805.zip |
Merge pull request #6081 from baude/v2system
v2 system subcommand
Diffstat (limited to 'pkg/domain/infra/runtime_abi_unsupported.go')
-rw-r--r-- | pkg/domain/infra/runtime_abi_unsupported.go | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/pkg/domain/infra/runtime_abi_unsupported.go b/pkg/domain/infra/runtime_abi_unsupported.go new file mode 100644 index 000000000..c4e25e990 --- /dev/null +++ b/pkg/domain/infra/runtime_abi_unsupported.go @@ -0,0 +1,14 @@ +// +build !ABISupport + +package infra + +import ( + "errors" + + "github.com/containers/libpod/pkg/domain/entities" +) + +// NewSystemEngine factory provides a libpod runtime for specialized system operations +func NewSystemEngine(setup entities.EngineSetup, facts *entities.PodmanConfig) (entities.SystemEngine, error) { + return nil, errors.New("not implemented") +} |