github.com/containers/libpod@v1.9.4-0.20220419124438-4284fd425507/cmd/podman/commands_remoteclient.go (about) 1 // +build remoteclient 2 3 package main 4 5 import ( 6 "github.com/spf13/cobra" 7 ) 8 9 const remoteclient = true 10 11 // commands that only the remoteclient implements 12 func getMainCommands() []*cobra.Command { 13 return []*cobra.Command{} 14 } 15 16 // commands that only the remoteclient implements 17 func getAppCommands() []*cobra.Command { // nolint:varcheck,deadcode,unused 18 return []*cobra.Command{} 19 } 20 21 // commands that only the remoteclient implements 22 func getImageSubCommands() []*cobra.Command { 23 return []*cobra.Command{} 24 } 25 26 // commands that only the remoteclient implements 27 func getContainerSubCommands() []*cobra.Command { 28 return []*cobra.Command{} 29 } 30 31 // commands that only the remoteclient implements 32 func getGenerateSubCommands() []*cobra.Command { // nolint:varcheck,deadcode,unused 33 return []*cobra.Command{} 34 } 35 36 // commands that only the remoteclient implements 37 func getPlaySubCommands() []*cobra.Command { 38 return []*cobra.Command{} 39 } 40 41 // commands that only the remoteclient implements 42 func getTrustSubCommands() []*cobra.Command { 43 return []*cobra.Command{} 44 } 45 46 // commands that only the remoteclient implements 47 func getSystemSubCommands() []*cobra.Command { 48 return []*cobra.Command{} 49 } 50 51 func getDefaultSecurityOptions() []string { 52 return []string{} 53 } 54 55 // getDefaultSysctls 56 func getDefaultSysctls() []string { 57 return []string{} 58 } 59 60 // getDefaultDevices 61 func getDefaultDevices() []string { 62 return []string{} 63 } 64 65 func getDefaultVolumes() []string { 66 return []string{} 67 } 68 69 func getDefaultDNSServers() []string { 70 return []string{} 71 } 72 73 func getDefaultDNSSearches() []string { 74 return []string{} 75 } 76 77 func getDefaultDNSOptions() []string { 78 return []string{} 79 } 80 81 func getDefaultEnv() []string { 82 return []string{} 83 } 84 85 func getDefaultInitPath() string { 86 return "" 87 } 88 89 func getDefaultIPCNS() string { 90 return "" 91 } 92 93 func getDefaultPidNS() string { 94 return "" 95 } 96 97 func getDefaultNetNS() string { 98 return "" 99 } 100 101 func getDefaultCgroupNS() string { 102 return "" 103 } 104 105 func getDefaultUTSNS() string { 106 return "" 107 } 108 109 func getDefaultShmSize() string { 110 return "" 111 } 112 113 func getDefaultUlimits() []string { 114 return []string{} 115 } 116 117 func getDefaultUserNS() string { 118 return "" 119 } 120 121 func getDefaultPidsLimit() int64 { 122 return -1 123 } 124 125 func getDefaultPidsDescription() string { 126 return "Tune container pids limit (set 0 for unlimited, -1 for server defaults)" 127 } 128 129 func getDefaultShareNetwork() string { // nolint:varcheck,deadcode,unused 130 return "" 131 } 132 133 func getDefaultDetachKeys() string { 134 return "" 135 }