From 2a0fc9580c0b169f3c1d884e300d8b3d59678431 Mon Sep 17 00:00:00 2001
From: "Richard W.M. Jones" <rjones@redhat.com>
Date: Thu, 23 Jun 2016 11:19:37 +0100
Subject: [PATCH] p2v: Force bash as the remote shell.
As described in the comment, this solves a number of problems with
non-standard remote configurations.
I tested this with:
- tcsh
- zsh
- ksh
and all behaved correctly.
(cherry picked from commit d41cf142e1eb285eca798889d3b6a955afffbe32)
---
p2v/ssh.c | 21 ++++++++++++++++++---
1 file changed, 18 insertions(+), 3 deletions(-)
diff --git a/p2v/ssh.c b/p2v/ssh.c
index f2c849f..d2c8035 100644
--- a/p2v/ssh.c
+++ b/p2v/ssh.c
@@ -416,13 +416,28 @@ start_ssh (struct config *config, char **extra_args, int wait_prompt)
if (!wait_prompt)
return h;
- /* Synchronize with the command prompt and set it to a known string. */
-
- /* Note that we cannot control the initial prompt. It would involve
+ /* Ensure we are running bash, set environment variables, and
+ * synchronize with the command prompt and set it to a known
+ * string. There are multiple issues being solved here:
+ *
+ * We cannot control the initial shell prompt. It would involve
* changing the remote SSH configuration (AcceptEnv). However what
* we can do is to repeatedly send 'export PS1=<magic>' commands
* until we synchronize with the remote shell.
+ *
+ * We don't know if the user is using a Bourne-like shell (eg sh,
+ * bash) or csh/tcsh. Setting environment variables works
+ * differently.
+ *
+ * We don't know how command line editing is set up
+ * (https://bugzilla.redhat.com/1314244#c9).
*/
+ if (mexp_printf (h, "exec bash --noediting --noprofile\n") == -1) {
+ set_ssh_error ("setting bash as remote shell: %m");
+ mexp_close (h);
+ return NULL;
+ }
+
saved_timeout = mexp_get_timeout_ms (h);
mexp_set_timeout (h, 2);
--
1.8.3.1