5 # Written by Joerg Jaspert <joerg@debian.org>
9 # We (may) use those variables wherever, so fill them now.
10 # Avoids calling the processes all the time we need em.
12 USER=${USER:-`whoami`}
14 # :r strips "extension" (a . followed by 0 or more characters)
16 HOST=${HOST:-$(hostname -s)}
17 DOMAIN=${DOMAIN:-$(hostname -d 2>&-)}
18 [ "$DOMAIN" = "" -o "$DOMAIN" = "localdomain" -o "$DOMAIN" = "(none)" ] && DOMAIN=$(grep "^search " /etc/resolv.conf | cut -d' ' -f2)
20 [ -f /etc/debian_version ] && DISTRI="Debian"
24 # Path to search for autoloadable functions.
25 fpath=( $HOME/.zsh/functions $HOME/zsh "$fpath[@]" )
26 # Only unique entries please.
30 # Include function path in script path so that we can run them even
31 # though a subshell may not know about functions.
32 # PATH should already be exported, but in case not. . .
39 /srv/qa.debian.org/mia
45 /usr/lib/nagios/plugins
50 if [ "`id -u`" = "0" ] || ! [ -x /usr/bin/id ]; then
59 # Only unique entries please.
61 # Remove entries that don't exist on this system. Just for sanity's
62 # sake more than anything.
63 path=( ${^path}(N-/) )
65 export PATH USER HOST DOMAIN UID
67 # Now that FPATH is set correctly, do autoloaded functions.
68 # autoload all functions in $FPATH - that is, all files in
69 # each component of the array $fpath. If there are none, feed the list
70 # it prints into /dev/null.
71 for paths in "$fpath[@]"; do
72 autoload -U "$paths"/*(N:t) >/dev/null
76 # Command to use when redirecting from/to a null command.
77 # READNULLCMD is redefined in .zshrc for interactive shells.
81 # Unix groups: remember the original group ID. (For prompts.)
82 if [[ ${+ORIGGID} -eq 0 ]]; then