From f8b42ffafbda917a0696e2442b032b8b3d811af1 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Thu, 1 Dec 2011 13:03:12 -0500 Subject: [PATCH] If you have a ~/.hosts file, export HOSTALIASES to use it. --- src/.bashrc.d/00environment | 5 +++++ 1 file changed, 5 insertions(+) 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 -- 2.26.2