Mercurial > masqmail
view contrib/guess-hostname @ 226:7b70bf4f1f42
renamed misc/ to devel/
because the contents are for developers
author | meillo@marmaro.de |
---|---|
date | Fri, 23 Jul 2010 11:46:08 +0200 |
parents | 92b58989a09e |
children |
line wrap: on
line source
#!/bin/sh # # try several ways to guess the hostname # earlier output lines are probably better ( # this is what Debian uses cat /etc/mailname # probably a good value on GNU/Linux hostname -f # this is often the short hostname cat /etc/hostname # often the short hostname, but widely available hostname # this file was mentioned on the Internet cat /etc/HOSTNAME ) 2>/dev/null | uniq exit 0