openrc/init.d/hostname

19 lines
314 B
Plaintext
Raw Normal View History

#!/sbin/runscript
# Copyright 2007-2008 Roy Marples
# All rights reserved
description="Sets the hostname of the machine."
depend()
{
need checkroot
}
start()
{
hostname=${hostname-${HOSTNAME-localhost}}
ebegin "Setting hostname to ${hostname}"
hostname "${hostname}"
eend $? "Failed to set the hostname"
}