Some distros now use dash instead of bash for /bin/sh. However, the start script makes use of some bash-isms and so fails to run if /bin/sh is dash. This patch fixes the problem by specifying bash as the script interpreter.
Signed-off-by: Grant Likely <[email protected]> --- conmux/start | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/conmux/start b/conmux/start index 92402af..dabcd58 100755 --- a/conmux/start +++ b/conmux/start @@ -1,4 +1,4 @@ -#! /bin/sh +#!/bin/bash # # start -- start up configured conmux servers on this host. # _______________________________________________ Autotest mailing list [email protected] http://test.kernel.org/cgi-bin/mailman/listinfo/autotest
