summaryrefslogtreecommitdiff
path: root/cmd/podman/system/service_unsupported.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/podman/system/service_unsupported.go')
-rw-r--r--cmd/podman/system/service_unsupported.go14
1 files changed, 14 insertions, 0 deletions
diff --git a/cmd/podman/system/service_unsupported.go b/cmd/podman/system/service_unsupported.go
new file mode 100644
index 000000000..95f8189f6
--- /dev/null
+++ b/cmd/podman/system/service_unsupported.go
@@ -0,0 +1,14 @@
+// +build !ABISupport
+
+package system
+
+import (
+ "errors"
+
+ "github.com/containers/libpod/pkg/domain/entities"
+ "github.com/spf13/pflag"
+)
+
+func restService(opts entities.ServiceOptions, flags *pflag.FlagSet, cfg *entities.PodmanConfig) error {
+ return errors.New("not supported")
+}