blob: 4ad7877d90ec8b45200bd4a4b1d691e04125668b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/sbin/openrc-run
description="Sets the hostname of the machine."
depend() {
keyword -prefix -lxc
}
start() {
if [ -s /etc/hostname ] ; then
opts="-F /etc/hostname"
else
opts="${hostname:-localhost}"
fi
ebegin "Setting hostname"
hostname $opts
eend $?
}
|