X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=etc%2Fzsh%2Fzshenv;h=0f12462205907eb2e051cb32238a417de4a792e6;hb=fbcf64be606a6956dc4c4ade15775e4a4670366f;hp=2ddcb2b58e3cced14d38bdf9e2b124b1329d8a41;hpb=388a927ab9b1be708cc47abbfa7fcec796bf8db9;p=grml-etc-core.git diff --git a/etc/zsh/zshenv b/etc/zsh/zshenv index 2ddcb2b..0f12462 100644 --- a/etc/zsh/zshenv +++ b/etc/zsh/zshenv @@ -3,26 +3,33 @@ # Authors: grml-team (grml.org), (c) Michael Prokop # Bug-Reports: see http://grml.org/bugs/ # License: This file is licensed under the GPL v2. -# Latest change: Don Okt 26 00:04:38 CEST 2006 [mika] +# Latest change: Sam Feb 24 18:59:11 CET 2007 [mika] ################################################################################ # This file is sourced on all invocations of the shell. -# If the -f flag is present or if the NO_RCS option is -# set within this file, all other initialization files -# are skipped. +# It is the 1st file zsh reads; it's read for every shell, +# even if started with -f (setopt NO_RCS), all other +# initialization files are skipped. # # This file should contain commands to set the command # search path, plus other important environment variables. # This file should not contain commands that produce # output or assume the shell is attached to a tty. # +# Notice: .zshenv is the same, execpt that it's not read +# if zsh is started with -f +# # Global Order: zshenv, zprofile, zshrc, zlogin ################################################################################ # language settings (read in /etc/environment before /etc/default/locale as # the latter one is the default on Debian nowadays) [ -r /etc/environment ] && source /etc/environment - [ -r /etc/default/locale ] && source /etc/default/locale - [ -n "$LANG" ] && export LANG || export LANG="en_US.iso885915" + if [ -n "$LANG" ] ; then + export LANG + else + [ -r /etc/default/locale ] && source /etc/default/locale + fi + [ -n "$LANG" ] && export LANG || export LANG="en_US.iso885915" [ -n "$LC_ALL" ] && export LC_ALL [ -n "$LC_MESSAGES" ] && export LC_MESSAGES @@ -68,7 +75,10 @@ # export LESS=C export LESSOPEN="|lesspipe.sh %s" export READNULLCMD=${PAGER:-/usr/bin/pager} + +# allow zeroconf for distcc export DISTCC_HOSTS="+zeroconf" + # MAKEDEV should be usable on udev as well by default: export WRITE_ON_UDEV=yes