blob: c1580db084d2516c2c84ee2cdd89f41f70fa8df8 (
plain) (
tree)
|
|
#!/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="localhost"
fi
ebegin "Setting hostname"
hostname $opts
eend $?
}
|