@@ -16,7 +16,10 @@ import (
16
16
"github.com/openshift/origin/pkg/cmd/util/clientcmd"
17
17
)
18
18
19
- const RshRecommendedName = "rsh"
19
+ const (
20
+ RshRecommendedName = "rsh"
21
+ DefaultShell = "/bin/sh"
22
+ )
20
23
21
24
var (
22
25
rshLong = templates .LongDesc (`
@@ -94,7 +97,7 @@ func NewCmdRsh(name string, parent string, f *clientcmd.Factory, in io.Reader, o
94
97
}
95
98
cmd .Flags ().BoolVarP (& options .ForceTTY , "tty" , "t" , false , "Force a pseudo-terminal to be allocated" )
96
99
cmd .Flags ().BoolVarP (& options .DisableTTY , "no-tty" , "T" , false , "Disable pseudo-terminal allocation" )
97
- cmd .Flags ().StringVar (& options .Executable , "shell" , "/bin/sh" , "Path to the shell command" )
100
+ cmd .Flags ().StringVar (& options .Executable , "shell" , DefaultShell , "Path to the shell command" )
98
101
cmd .Flags ().IntVar (& options .Timeout , "timeout" , 10 , "Request timeout for obtaining a pod from the server; defaults to 10 seconds" )
99
102
cmd .Flags ().StringVarP (& options .ContainerName , "container" , "c" , "" , "Container name; defaults to first container" )
100
103
cmd .Flags ().SetInterspersed (false )
@@ -155,8 +158,9 @@ func (o *RshOptions) Validate() error {
155
158
// Run starts a remote shell session on the server
156
159
func (o * RshOptions ) Run () error {
157
160
// Insert the TERM into the command to be run
158
- term := fmt .Sprintf ("TERM=%s" , util .Env ("TERM" , "xterm" ))
159
- o .Command = append ([]string {"env" , term }, o .Command ... )
160
-
161
+ if len (o .Command ) == 1 && o .Command [0 ] == DefaultShell {
162
+ termsh := fmt .Sprintf ("TERM=%q %s" , util .Env ("TERM" , "xterm" ), DefaultShell )
163
+ o .Command = append (o .Command , "-c" , termsh )
164
+ }
161
165
return o .ExecOptions .Run ()
162
166
}
0 commit comments