From: W. Trevor King Date: Thu, 1 Dec 2011 18:03:12 +0000 (-0500) Subject: If you have a ~/.hosts file, export HOSTALIASES to use it. X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=f8b42ffafbda917a0696e2442b032b8b3d811af1;p=dotfiles-public.git If you have a ~/.hosts file, export HOSTALIASES to use it. --- diff --git a/src/.bashrc.d/00environment b/src/.bashrc.d/00environment index e5fcd6c..20a71d8 100644 --- a/src/.bashrc.d/00environment +++ b/src/.bashrc.d/00environment @@ -2,4 +2,9 @@ export EDITOR="/usr/bin/emacs -nw" export PAGER="less" +# per-user host aliases. See hostname(7) +if [ -f ~/.hosts ]; then + export HOSTALIASES=~/.hosts +fi + export MONKEYSPHERE_CHECK_KEYSERVER=false