summaryrefslogtreecommitdiff
path: root/meta/packages/initscripts/initscripts-1.0/hostname.sh
diff options
context:
space:
mode:
authorRoss Burton <ross@openedhand.com>2008-07-03 15:20:56 +0000
committerRoss Burton <ross@openedhand.com>2008-07-03 15:20:56 +0000
commitbde70a9f31b1c266764724db329c8077f6734884 (patch)
treeedb6c5c189bd3c359cc72052d91b673f1489744e /meta/packages/initscripts/initscripts-1.0/hostname.sh
parent2a7b3ad49137da3e3c4206df9b1fdb94652ae908 (diff)
downloadopenembedded-core-bde70a9f31b1c266764724db329c8077f6734884.tar.gz
openembedded-core-bde70a9f31b1c266764724db329c8077f6734884.tar.bz2
openembedded-core-bde70a9f31b1c266764724db329c8077f6734884.tar.xz
openembedded-core-bde70a9f31b1c266764724db329c8077f6734884.zip
initscripts: add dependency headers
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4801 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/initscripts/initscripts-1.0/hostname.sh')
-rwxr-xr-xmeta/packages/initscripts/initscripts-1.0/hostname.sh14
1 files changed, 8 insertions, 6 deletions
diff --git a/meta/packages/initscripts/initscripts-1.0/hostname.sh b/meta/packages/initscripts/initscripts-1.0/hostname.sh
index 0f3d37428..4399ee7b1 100755
--- a/meta/packages/initscripts/initscripts-1.0/hostname.sh
+++ b/meta/packages/initscripts/initscripts-1.0/hostname.sh
@@ -1,11 +1,13 @@
-#
-# hostname.sh Set hostname.
-#
-# Version: @(#)hostname.sh 1.10 26-Feb-2001 miquels@cistron.nl
-#
+### BEGIN INIT INFO
+# Provides: hostname
+# Required-Start:
+# Required-Stop:
+# Default-Start: S
+# Default-Stop:
+# Short-Description: Set hostname based on /etc/hostname
+### END INIT INFO
if test -f /etc/hostname
then
hostname -F /etc/hostname
fi
-