Always execute grml-quickconfig if available.
authorUlrich Dangel <mru@grml.org>
Tue, 24 May 2011 16:57:57 +0000 (18:57 +0200)
committerUlrich Dangel <mru@grml.org>
Tue, 24 May 2011 16:57:57 +0000 (18:57 +0200)
Remove the test for grml-small as grml-quickconfig only displays the
available commands anyway.

usr_bin/zsh-login

index f0550fb..e32a17a 100755 (executable)
@@ -47,10 +47,7 @@ case "$CMDLINE" in
       ;;
    *) # by default run grml-quickconfig, but only if running as root
       if [ "$(id -u)" = "0" ] ; then
-        # do not run grml-quickconfig on grml-small
-        if ! grep -q small /etc/grml_version ; then
-            which grml-quickconfig &>/dev/null && grml-quickconfig
-         fi
+         which grml-quickconfig &>/dev/null && grml-quickconfig
       fi
 esac