diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2012-02-03 09:53:01 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2012-02-03 09:53:01 +0000 |
commit | 368d303a20726a3027b887eef64b3f9920c450a2 (patch) | |
tree | 3a64f67b9a0606c30ca9b0ebd550412e89bef8da /Completion/Unix | |
parent | 756f17a755fe52eb36aefc99bed4a41385d41df8 (diff) | |
download | zsh-368d303a20726a3027b887eef64b3f9920c450a2.tar.gz zsh-368d303a20726a3027b887eef64b3f9920c450a2.tar.xz zsh-368d303a20726a3027b887eef64b3f9920c450a2.zip |
Mariusz Glebocki: 30179: suppress stderr for listing services
Diffstat (limited to 'Completion/Unix')
-rw-r--r-- | Completion/Unix/Type/_services | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Unix/Type/_services b/Completion/Unix/Type/_services index 496054795..3dd1e1231 100644 --- a/Completion/Unix/Type/_services +++ b/Completion/Unix/Type/_services @@ -10,7 +10,7 @@ if [[ $OSTYPE = freebsd* ]]; then _wanted services expl service compadd "$@" - $alls[@] && ret=0 fi elif chkconfig --list > /dev/null 2>&1; then - alls=( ${(f)"$(LANGUAGE=C LANG=C LC_ALL=C chkconfig --list)"} ) + alls=( ${(f)"$(LANGUAGE=C LANG=C LC_ALL=C chkconfig --list 2> /dev/null)"} ) inits=( ${${${alls[1,(r)xinetd based*]}[1,-2]}/%[[:space:]]*/} ) xinetds=( ${${${${alls[(r)xinetd based*,-1]}[2,-1]}/#[[:space:]]#}/%:*} ) |