From: Michael Fritch Date: Mon, 9 Mar 2020 16:00:07 +0000 (-0600) Subject: cephadm: use `sh` instead of `bash` during enter X-Git-Tag: v15.1.1~56^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=60286fa1f03786ff301ebdb03b4e2c6f0bc2c23a;p=ceph.git cephadm: use `sh` instead of `bash` during enter not all container images use bash (e.g. node-exporter etc) Signed-off-by: Michael Fritch --- diff --git a/src/cephadm/cephadm b/src/cephadm/cephadm index 3a859e566e42..97dae91cb2af 100755 --- a/src/cephadm/cephadm +++ b/src/cephadm/cephadm @@ -2260,7 +2260,7 @@ def command_enter(): if args.command: command = args.command else: - command = ['bash'] + command = ['sh'] container_args += [ '-it', '-e', 'LANG=C',