From: Tzafrir Cohen Date: Sun, 26 Jan 2014 14:19:14 +0000 (+0000) Subject: live_ast: run wrapped programs with exec X-Git-Tag: 13.0.0-beta1~610 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6b019afadace4941a409c3454fbac505bb90fabc;p=thirdparty%2Fasterisk.git live_ast: run wrapped programs with exec live_ast can be used as a wrapper script to run asterisk, gdb or valgrind. In those cases it runs them and returns the result. It is more useful to use 'exec' to avoid having another odd process in the chain. Review: https://reviewboard.asterisk.org/r/3110/ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@406503 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/contrib/scripts/live_ast b/contrib/scripts/live_ast index 188720f901..0b5151fa51 100755 --- a/contrib/scripts/live_ast +++ b/contrib/scripts/live_ast @@ -251,11 +251,11 @@ conf-file) ;; run) set_ld_env - $AST_BIN -C $AST_CONF "$@" + exec $AST_BIN -C $AST_CONF "$@" ;; valgrind) set_ld_env - valgrind $LIVE_AST_VALGRIND_ARGS $AST_BIN -C $AST_CONF "$@" + exec valgrind $LIVE_AST_VALGRIND_ARGS $AST_BIN -C $AST_CONF "$@" ;; rsync) remote_host="$1" @@ -273,7 +273,7 @@ gen-live-asterisk) ;; gdb) set_ld_env - gdb -x $GDB_INIT $AST_BIN + exec gdb -x $GDB_INIT $AST_BIN ;; *) echo "$0: Unknown command '$command'. Aborting"