2015-04-09 18:46:29 +00:00
|
|
|
#!/sbin/openrc-run
|
2015-02-27 00:58:55 +00:00
|
|
|
# Copyright (c) 2007-2009 Roy Marples <roy@marples.name>
|
|
|
|
# Released under the 2-clause BSD license.
|
|
|
|
|
|
|
|
description="Sets the hostname of the machine."
|
|
|
|
|
|
|
|
depend() {
|
2015-07-31 00:55:23 +00:00
|
|
|
keyword -prefix -systemd-nspawn -lxc
|
2015-02-27 00:58:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
start()
|
|
|
|
{
|
|
|
|
# HOSTNAME variable used to be defined in caps in conf.d/hostname.
|
|
|
|
# It is also a magic variable in bash.
|
|
|
|
hostname=${hostname-${HOSTNAME-localhost}} # checkbashisms: false positive
|
|
|
|
ebegin "Setting hostname to $hostname"
|
|
|
|
hostname "$hostname"
|
|
|
|
eend $? "Failed to set the hostname"
|
|
|
|
}
|