* [PATCH 0/1] initscripts: overwrite default hostname.sh
@ 2013-07-04 9:23 jackie.huang
2013-07-04 9:23 ` [PATCH 1/1] " jackie.huang
0 siblings, 1 reply; 2+ messages in thread
From: jackie.huang @ 2013-07-04 9:23 UTC (permalink / raw)
To: openembedded-core
From: Jackie Huang <jackie.huang@windriver.com>
The following changes since commit 3e1dbabbf33a2e461abc92ff10cd970fe604ee38:
sysstat: backport a patch to fix a parallel building error (2013-07-02 07:58:10 -0700)
are available in the git repository at:
git://git.pokylinux.org/poky-contrib jhuang0/r_bbappend_udev-initscripts_0704
http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=jhuang0/r_bbappend_udev-initscripts_0704
Jackie Huang (1):
initscripts: overwrite default hostname.sh
.../initscripts/initscripts-1.0/hostname.sh | 12 ++++++++++--
1 files changed, 10 insertions(+), 2 deletions(-)
--
1.7.4.1
^ permalink raw reply [flat|nested] 2+ messages in thread
* [PATCH 1/1] initscripts: overwrite default hostname.sh
2013-07-04 9:23 [PATCH 0/1] initscripts: overwrite default hostname.sh jackie.huang
@ 2013-07-04 9:23 ` jackie.huang
0 siblings, 0 replies; 2+ messages in thread
From: jackie.huang @ 2013-07-04 9:23 UTC (permalink / raw)
To: openembedded-core
From: Jackie Huang <jackie.huang@windriver.com>
/etc/init.d/hostname.sh does not have a graceful fallback if the
/etc/hostname file doesn't exist. Other systems such as Ubuntu and RH
will either leave the hostname in place, if a proper hostname is
already set, otherwise it will set the hostname to 'localhost' when
the /etc/hostname files doesn't exist.
As you can see we have to add some additional handling to provide this
behavior when the system's hostname command doesn't take the '-b'
option.
Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com>
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
.../initscripts/initscripts-1.0/hostname.sh | 12 ++++++++++--
1 files changed, 10 insertions(+), 2 deletions(-)
diff --git a/meta/recipes-core/initscripts/initscripts-1.0/hostname.sh b/meta/recipes-core/initscripts/initscripts-1.0/hostname.sh
index fb58c9c..78fb91c 100755
--- a/meta/recipes-core/initscripts/initscripts-1.0/hostname.sh
+++ b/meta/recipes-core/initscripts/initscripts-1.0/hostname.sh
@@ -7,8 +7,16 @@
# Default-Stop:
# Short-Description: Set hostname based on /etc/hostname
### END INIT INFO
+HOSTNAME=$(/bin/hostname)
-if test -f /etc/hostname
-then
+hostname -b -F /etc/hostname 2> /dev/null
+if [ $? -eq 0 ]; then
+ exit
+fi
+
+# Busybox hostname doesn't support -b so we need implement it on our own
+if [ -f /etc/hostname ];then
hostname -F /etc/hostname
+elif [ -z "$HOSTNAME" -o "$HOSTNAME" = "(none)" -o ! -z "`echo $HOSTNAME | sed -n '/^[0-9]*\.[0-9].*/p'`" ] ; then
+ hostname localhost
fi
--
1.7.4.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-07-04 9:23 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-07-04 9:23 [PATCH 0/1] initscripts: overwrite default hostname.sh jackie.huang
2013-07-04 9:23 ` [PATCH 1/1] " jackie.huang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox