2013-12-22 02:21:11 +05:30
|
|
|
#!@SBINDIR@/openrc-run
|
2015-12-05 04:22:19 +05:30
|
|
|
# Copyright (c) 2007-2015 The OpenRC Authors.
|
|
|
|
# See the Authors file at the top-level directory of this distribution and
|
2021-12-21 06:37:00 +05:30
|
|
|
# https://github.com/OpenRC/openrc/blob/HEAD/AUTHORS
|
2015-12-05 04:22:19 +05:30
|
|
|
#
|
|
|
|
# This file is part of OpenRC. It is subject to the license terms in
|
|
|
|
# the LICENSE file found in the top-level directory of this
|
2021-12-21 06:37:00 +05:30
|
|
|
# distribution and at https://github.com/OpenRC/openrc/blob/HEAD/LICENSE
|
2015-12-05 04:22:19 +05:30
|
|
|
# This file may not be copied, modified, propagated, or distributed
|
|
|
|
# except according to the terms contained in the LICENSE file.
|
2007-11-14 20:52:04 +05:30
|
|
|
|
2007-07-11 00:39:41 +05:30
|
|
|
description="Sets the hostname of the machine."
|
|
|
|
|
2017-06-10 07:35:09 +05:30
|
|
|
depend()
|
|
|
|
{
|
2017-03-16 20:46:39 +05:30
|
|
|
after clock
|
2016-07-31 23:31:17 +05:30
|
|
|
keyword -docker -lxc -prefix -systemd-nspawn
|
2008-03-03 02:43:21 +05:30
|
|
|
}
|
|
|
|
|
2008-01-11 17:43:46 +05:30
|
|
|
start()
|
|
|
|
{
|
2016-08-23 23:52:19 +05:30
|
|
|
local h source x
|
2017-12-15 04:37:31 +05:30
|
|
|
if [ -s /etc/hostname ] && [ -r /etc/hostname ]; then
|
|
|
|
read h x </etc/hostname
|
|
|
|
source="from /etc/hostname"
|
2016-08-23 23:52:19 +05:30
|
|
|
else
|
|
|
|
# HOSTNAME variable used to be defined in caps in conf.d/hostname.
|
|
|
|
# It is also a magic variable in bash.
|
2017-06-10 07:42:49 +05:30
|
|
|
h=${hostname:-${HOSTNAME}} # checkbashisms: false positive (HOSTNAME var)
|
2016-08-25 00:13:11 +05:30
|
|
|
fi
|
|
|
|
if [ -z "$h" ]; then
|
|
|
|
einfo "Using default system hostname"
|
|
|
|
return 0
|
2016-08-23 23:52:19 +05:30
|
|
|
fi
|
|
|
|
ebegin "Setting hostname to $h $source"
|
|
|
|
hostname "$h"
|
2007-04-05 16:48:42 +05:30
|
|
|
eend $? "Failed to set the hostname"
|
|
|
|
}
|