X-Git-Url: http://git.grml.org/?p=grml-scripts.git;a=blobdiff_plain;f=usr_bin%2Fgrml-exec-wrapper;h=6ea449d546c0767628fe72b86c77dfcef0619807;hp=ed97b86221733c7c475f597a3d353be563fc5b63;hb=d392e93e0759e2d744c5614ac8bc363372134116;hpb=c6c4d5f29a5b31c42df22af4506f7807cd77407c diff --git a/usr_bin/grml-exec-wrapper b/usr_bin/grml-exec-wrapper index ed97b86..6ea449d 100755 --- a/usr_bin/grml-exec-wrapper +++ b/usr_bin/grml-exec-wrapper @@ -25,7 +25,7 @@ is_installed() { # use Xdisplay only if present and running under X: display_info() { -if is_installed Xdialog 1>/dev/null 2>&1 && test -n "$DISPLAY" ; then +if is_installed Xdialog && test -n "$DISPLAY" ; then Xdialog --title "grml-exec-wrapper" --msgbox "$1" 0 0 0 else print "$1">&2 @@ -45,7 +45,7 @@ case $PROG in *sudo*) PROG="$2" ;; esac -if is_installed "$PROG" 1>/dev/null 2>&1 ; then +if is_installed "$PROG" ; then exec $@ else RC=1