summaryrefslogtreecommitdiff
path: root/cmd/podman/commands_remoteclient.go
diff options
context:
space:
mode:
authorBrent Baude <bbaude@redhat.com>2020-04-16 12:25:26 -0500
committerBrent Baude <bbaude@redhat.com>2020-04-16 15:53:58 -0500
commit241326a9a8c20ad7f2bcf651416b836e7778e090 (patch)
tree4001e8e47a022bb1b9bfbf2332c42e1aeb802f9e /cmd/podman/commands_remoteclient.go
parent88c6fd06cd54fb9a8826306dfdf1a77e400de5de (diff)
downloadpodman-241326a9a8c20ad7f2bcf651416b836e7778e090.tar.gz
podman-241326a9a8c20ad7f2bcf651416b836e7778e090.tar.bz2
podman-241326a9a8c20ad7f2bcf651416b836e7778e090.zip
Podman V2 birth
remote podman v1 and replace with podman v2. Signed-off-by: Brent Baude <bbaude@redhat.com>
Diffstat (limited to 'cmd/podman/commands_remoteclient.go')
-rw-r--r--cmd/podman/commands_remoteclient.go135
1 files changed, 0 insertions, 135 deletions
diff --git a/cmd/podman/commands_remoteclient.go b/cmd/podman/commands_remoteclient.go
deleted file mode 100644
index 11baeb4ae..000000000
--- a/cmd/podman/commands_remoteclient.go
+++ /dev/null
@@ -1,135 +0,0 @@
-// +build remoteclient
-
-package main
-
-import (
- "github.com/spf13/cobra"
-)
-
-const remoteclient = true
-
-// commands that only the remoteclient implements
-func getMainCommands() []*cobra.Command {
- return []*cobra.Command{}
-}
-
-// commands that only the remoteclient implements
-func getAppCommands() []*cobra.Command { // nolint:varcheck,deadcode,unused
- return []*cobra.Command{}
-}
-
-// commands that only the remoteclient implements
-func getImageSubCommands() []*cobra.Command {
- return []*cobra.Command{}
-}
-
-// commands that only the remoteclient implements
-func getContainerSubCommands() []*cobra.Command {
- return []*cobra.Command{}
-}
-
-// commands that only the remoteclient implements
-func getGenerateSubCommands() []*cobra.Command { // nolint:varcheck,deadcode,unused
- return []*cobra.Command{}
-}
-
-// commands that only the remoteclient implements
-func getPlaySubCommands() []*cobra.Command {
- return []*cobra.Command{}
-}
-
-// commands that only the remoteclient implements
-func getTrustSubCommands() []*cobra.Command {
- return []*cobra.Command{}
-}
-
-// commands that only the remoteclient implements
-func getSystemSubCommands() []*cobra.Command {
- return []*cobra.Command{}
-}
-
-func getDefaultSecurityOptions() []string {
- return []string{}
-}
-
-// getDefaultSysctls
-func getDefaultSysctls() []string {
- return []string{}
-}
-
-// getDefaultDevices
-func getDefaultDevices() []string {
- return []string{}
-}
-
-func getDefaultVolumes() []string {
- return []string{}
-}
-
-func getDefaultDNSServers() []string {
- return []string{}
-}
-
-func getDefaultDNSSearches() []string {
- return []string{}
-}
-
-func getDefaultDNSOptions() []string {
- return []string{}
-}
-
-func getDefaultEnv() []string {
- return []string{}
-}
-
-func getDefaultInitPath() string {
- return ""
-}
-
-func getDefaultIPCNS() string {
- return ""
-}
-
-func getDefaultPidNS() string {
- return ""
-}
-
-func getDefaultNetNS() string {
- return ""
-}
-
-func getDefaultCgroupNS() string {
- return ""
-}
-
-func getDefaultUTSNS() string {
- return ""
-}
-
-func getDefaultShmSize() string {
- return ""
-}
-
-func getDefaultUlimits() []string {
- return []string{}
-}
-
-func getDefaultUserNS() string {
- return ""
-}
-
-func getDefaultPidsLimit() int64 {
- return -1
-}
-
-func getDefaultPidsDescription() string {
- return "Tune container pids limit (set 0 for unlimited, -1 for server defaults)"
-}
-
-func getDefaultShareNetwork() string { // nolint:varcheck,deadcode,unused
- return ""
-}
-
-func getDefaultDetachKeys() string {
- return ""
-}