X-Git-Url: http://git.grml.org/?a=blobdiff_plain;ds=sidebyside;f=autoconfig.functions;h=50fdf81b7418aeea9cd106ee7fd99696c3a98e1c;hb=6fbe7e6ff8b7d01dc6aa0fe1df9addca2dfe1e40;hp=d90e051a330324cffc705179d3b81593dd327d75;hpb=0726d09de9efa8d249360d5197802957354d3149;p=grml-autoconfig.git diff --git a/autoconfig.functions b/autoconfig.functions index d90e051..50fdf81 100755 --- a/autoconfig.functions +++ b/autoconfig.functions @@ -60,7 +60,7 @@ getbootparam(){ # Check boot commandline for specified option checkbootparam(){ - [ -n "$1" ] || { echo "Error: missing argument to checkbootparam()" ; return 1 } + [ -n "$1" ] || ( echo "Error: missing argument to checkbootparam()" ; return 1 ) # make sure we match beginning and end of line as well # but don't match 'vg' if we want to check for 'vga' if echo "$CMDLINE" | grep -qw "$1" ; then @@ -1850,7 +1850,7 @@ create_mnt_dirs(){ config_x_startup(){ # make sure we start X only if startx is used *before* a nostartx option # so it's possible to disable automatic X startup using nostart -if checkbootparam 'startx' && ! grep -q 'startx.*nostartx' "$CMDLINE" ; then +if checkbootparam 'startx' && ! echo "$CMDLINE" | grep -q 'startx.*nostartx' ; then if [ -x /usr/X11R6/bin/X ] ; then if [ -z "$INSTALLED" ] ; then WINDOWMANAGER="$(getbootparam 'startx' 2>>$DEBUG)"