aports/main/openrc/hostname.initd

19 lines
277 B
Plaintext

#!/sbin/openrc-run
description="Sets the hostname of the machine."
depend() {
keyword -prefix -lxc -docker
}
start() {
if [ -s /etc/hostname ] ; then
opts="-F /etc/hostname"
else
opts="${hostname:-localhost}"
fi
ebegin "Setting hostname"
hostname $opts
eend $?
}