From: Ulrich Dangel Date: Tue, 24 May 2011 16:57:57 +0000 (+0200) Subject: Always execute grml-quickconfig if available. X-Git-Tag: v1.4.5~2 X-Git-Url: http://git.grml.org/?p=grml-scripts.git;a=commitdiff_plain;h=7b6b106c3e01180d64c0e43d157a8c5b7f55e5d1 Always execute grml-quickconfig if available. Remove the test for grml-small as grml-quickconfig only displays the available commands anyway. --- 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