comparison admin/guess-hostname @ 227:cab46cefa4ce

renamed contrib/ to admin/ because the contents are for system admins and possibly for advanced users too
author meillo@marmaro.de
date Fri, 23 Jul 2010 11:49:44 +0200
parents contrib/guess-hostname@92b58989a09e
children
comparison
equal deleted inserted replaced
226:7b70bf4f1f42 227:cab46cefa4ce
1 #!/bin/sh
2 #
3 # try several ways to guess the hostname
4 # earlier output lines are probably better
5
6 (
7
8 # this is what Debian uses
9 cat /etc/mailname
10
11 # probably a good value on GNU/Linux
12 hostname -f
13
14 # this is often the short hostname
15 cat /etc/hostname
16
17 # often the short hostname, but widely available
18 hostname
19
20 # this file was mentioned on the Internet
21 cat /etc/HOSTNAME
22
23 ) 2>/dev/null | uniq
24
25 exit 0