1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

Revert "ctdb-tests: Enable job control when keeping stdin open"

This doesn't work when stdin is not a tty.

This reverts commit ea754bfdec.

Signed-off-by: Martin Schwenke <martin@meltin.net>
Reviewed-by: Amitay Isaacs <amitay@gmail.com>
This commit is contained in:
Martin Schwenke 2020-01-29 14:30:25 +11:00 committed by Amitay Isaacs
parent 2d9841c978
commit 0737849b90

View File

@ -307,7 +307,7 @@ local_daemons_ssh ()
if $_close_stdin ; then
exec sh -c "$*" <&-
else
exec sh -m -c "$*"
exec sh -c "$*"
fi
}