aboutsummaryrefslogtreecommitdiffstats
path: root/main/openrc/hostname.initd
blob: 76db9e44bd82bc0900ea326258e9a15c0d3a7098 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/sbin/runscript

description="Sets the hostname of the machine."

depend() {
	keyword -prefix -lxc
}

start() {
	if [ -f /etc/hostname ] ; then
		opts="-F /etc/hostname"
	else
		opts="localhost"
	fi
	ebegin "Setting hostname"
	hostname $opts
	eend $?
}