Skip to content

Commit dc5ca90

Browse files
author
OpenShift Bot
authored
Merge pull request #12386 from bparees/rsh_term
Merged by openshift-bot
2 parents 68b25d5 + 8afb300 commit dc5ca90

File tree

2 files changed

+17
-5
lines changed

2 files changed

+17
-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
}

test/end-to-end/core.sh

+8
Original file line numberDiff line numberDiff line change
@@ -449,6 +449,14 @@ frontend_pod=$(oc get pod -l deploymentconfig=frontend --template='{{(index .ite
449449
os::cmd::expect_success_and_text "oc exec -p ${frontend_pod} id" '1000'
450450
os::cmd::expect_success_and_text "oc rsh pod/${frontend_pod} id -u" '1000'
451451
os::cmd::expect_success_and_text "oc rsh -T ${frontend_pod} id -u" '1000'
452+
453+
# test that rsh inherits the TERM variable by default
454+
# this must be done as an echo and not an argument to rsh because rsh only sets the TERM if
455+
# no arguments are supplied.
456+
TERM=test_terminal os::cmd::expect_success_and_text "echo 'echo $TERM' | oc rsh ${frontend_pod}" $TERM
457+
# and does not inherit it when the user provides a command.
458+
TERM=test_terminal os::cmd::expect_success_and_not_text "oc rsh ${frontend_pod} echo \$TERM" $TERM
459+
452460
# Wait for the rollout to finish
453461
os::cmd::expect_success "oc rollout status dc/frontend --revision=1"
454462
# Test retrieving application logs from dc

0 commit comments

Comments
 (0)