aboutsummaryrefslogtreecommitdiffstats
path: root/setup-hostname.in
blob: c551de73ad99d49c27290c2bcce1d35959a40f2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#!/bin/sh

PROGRAM=setup-hostname
PREFIX=

. $PREFIX/lib/libalpine.sh

usage() {
        cat <<__EOF__
usage: setup-hostname [-h] [-n hostname]

Sets the system hostname.

options:
 -h  Show this help
 -n  Specify the hostname to set
__EOF__
        exit 1
}


# http://en.wikipedia.org/wiki/Hostname#Restrictions_on_valid_host_names
valid_hostname() {
	# check length
	if [ $(echo "$1" | wc -c) -gt 63 ]; then
		echo "Hostname '$1' is too long."
		return 1
	fi
	# check that it only contains valid chars
	if ! [ -z "$(echo $1 | sed 's/[0-9a-z-]//g')" ]; then
		echo "Hostname must only contain letters (a-z), digits (0-9) or -"
		return 1
	fi
	# must not start with -
	case "$1" in
		-*) echo "Hostname must not start with a '-'"; return 1;;
	esac
	return 0
}

while getopts "hn:" opt; do
        case $opt in
		h) usage;;
		n) HOSTNAME="$OPTARG";;
        esac
done


while true; do
	if [ -n "$HOSTNAME" ]; then
		HOST="$HOSTNAME"
	else
		HOST=`hostname`
		echon "Enter system hostname (short form, e.g. 'foo') [$HOST]: "
		default_read HOST `hostname`
	fi
	if valid_hostname "$HOST"; then
		break
	fi
done

mkdir -p "$ROOT/etc"
echo "$HOST" > "$ROOT/etc/hostname"