X-Git-Url: http://git.grml.org/?p=grml-scripts-core.git;a=blobdiff_plain;f=usr_bin%2Fgrml-config-user;h=6882a31ef79438373ca99f314c76a11a966701a6;hp=db261bea28ed6cfc0cc7ccd3727f29ad3112f9cb;hb=9fef74081f53d30174118872324fa62d4a8145b5;hpb=03fcacf4cdf6ed30709d2639436870f906b8f1c9 diff --git a/usr_bin/grml-config-user b/usr_bin/grml-config-user index db261be..6882a31 100755 --- a/usr_bin/grml-config-user +++ b/usr_bin/grml-config-user @@ -4,7 +4,6 @@ # Authors: grml-team (grml.org), (c) Nico Golde , (c) Michael Prokop # Bug-Reports: see http://grml.org/bugs/ # License: This file is licensed under the GPL v2. -# Latest change: Mon Dec 05 11:12:49 CET 2005 [mika] ################################################################################ PATH=${PATH:-'/bin/:/sbin/:/usr/bin:/usr/sbin'} @@ -17,7 +16,6 @@ allover() { MENU=$($DIALOG --stdout --clear --title "$PN" --menu \ "Configure userland tools." 0 0 0 \ "grml-mutt" "Configure the mutt MUA" \ -"grml-muttng" "Configuration of mutt next generation" \ "grml-slrn" "Configure the slrn newsreader" \ "exit" "Exit this program") @@ -25,16 +23,13 @@ retval=$? case $retval in 0) - if [ $MENU == grml-mutt ]; then + if [ "$MENU" = "grml-mutt" ]; then exec grml-mutt fi - if [ $MENU == grml-muttng ]; then - exec grml-muttng - fi - if [ $MENU == grml-slrn ]; then + if [ "$MENU" = "grml-slrn" ]; then exec grml-slrn fi - if [ $MENU == exit ]; then + if [ "$MENU" = "exit" ]; then exit fi ;;