aboutsummaryrefslogtreecommitdiff
path: root/sh/shrc
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-12-17 18:48:17 +1300
committerTom Ryder <tom@sanctum.geek.nz>2016-12-17 18:48:17 +1300
commitfa4e7a2bbcabe213d410c4983b6faba8fab05e4a (patch)
treee58af0a5ba3a5157bc6bd39f5d1aa728c3e65965 /sh/shrc
parentKnock out $HOST from kshrc (diff)
downloaddotfiles-fa4e7a2bbcabe213d410c4983b6faba8fab05e4a.tar.gz
dotfiles-fa4e7a2bbcabe213d410c4983b6faba8fab05e4a.zip
Move HOSTNAME call into shrc
Diffstat (limited to 'sh/shrc')
-rw-r--r--sh/shrc3
1 files changed, 3 insertions, 0 deletions
diff --git a/sh/shrc b/sh/shrc
index 6c4eac8b..8bbc5147 100644
--- a/sh/shrc
+++ b/sh/shrc
@@ -7,6 +7,9 @@ command -p stty -ixon -ctlecho 2>/dev/null
# Keep around 4K lines of history in memory
HISTSIZE=$((1 << 12))
+# If HOSTNAME isn't set by this shell, we'll do it
+[ -n "$HOSTNAME" ] || HOSTNAME=$(uname -n)
+
# Don't warn me about new mail
unset -v MAILCHECK