From 7b6b106c3e01180d64c0e43d157a8c5b7f55e5d1 Mon Sep 17 00:00:00 2001 From: Ulrich Dangel Date: Tue, 24 May 2011 18:57:57 +0200 Subject: [PATCH] Always execute grml-quickconfig if available. Remove the test for grml-small as grml-quickconfig only displays the available commands anyway. --- usr_bin/zsh-login | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/usr_bin/zsh-login b/usr_bin/zsh-login index f0550fb..e32a17a 100755 --- a/usr_bin/zsh-login +++ b/usr_bin/zsh-login @@ -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 -- 2.1.4