Skip to content

Commit c08374d

Browse files
committed
only set term if rsh is running /bin/sh
also set it without using env so it will work in containers that don't have /bin/env
1 parent a5eaf99 commit c08374d

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

pkg/cmd/cli/cmd/rsh.go

+9-5
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@ import (
1616
"github.com/openshift/origin/pkg/cmd/util/clientcmd"
1717
)
1818

19-
const RshRecommendedName = "rsh"
19+
const (
20+
RshRecommendedName = "rsh"
21+
DefaultShell = "/bin/sh"
22+
)
2023

2124
var (
2225
rshLong = templates.LongDesc(`
@@ -94,7 +97,7 @@ func NewCmdRsh(name string, parent string, f *clientcmd.Factory, in io.Reader, o
9497
}
9598
cmd.Flags().BoolVarP(&options.ForceTTY, "tty", "t", false, "Force a pseudo-terminal to be allocated")
9699
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")
98101
cmd.Flags().IntVar(&options.Timeout, "timeout", 10, "Request timeout for obtaining a pod from the server; defaults to 10 seconds")
99102
cmd.Flags().StringVarP(&options.ContainerName, "container", "c", "", "Container name; defaults to first container")
100103
cmd.Flags().SetInterspersed(false)
@@ -155,8 +158,9 @@ func (o *RshOptions) Validate() error {
155158
// Run starts a remote shell session on the server
156159
func (o *RshOptions) Run() error {
157160
// 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+
}
161165
return o.ExecOptions.Run()
162166
}

0 commit comments

Comments
 (0)