aboutsummaryrefslogtreecommitdiffstats
path: root/netbase
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2003-12-02 19:17:25 +0000
committerChris Larson <clarson@kergoth.com>2003-12-02 19:17:25 +0000
commit4d2911a2ccaa450e9f541d87afe67e65b5c10d45 (patch)
tree0224ca83458c388d163a1cdd67a2532a3c0553e5 /netbase
parent5f3bc250dffc3cf371fcf9be3a26234613fadedb (diff)
downloadopenembedded-4d2911a2ccaa450e9f541d87afe67e65b5c10d45.tar.gz
Install update-rc.d into staging in the sysvinit build, and add calls to it in prerm/postinst of netbase. Starting to get our rcX.d dirs populated.
BKrev: 3fcce545W6XMv3BuT32vqU9mTBMR5g
Diffstat (limited to 'netbase')
-rw-r--r--netbase/netbase_4.14.oe27
1 files changed, 27 insertions, 0 deletions
diff --git a/netbase/netbase_4.14.oe b/netbase/netbase_4.14.oe
index e69de29bb2..767310bff0 100644
--- a/netbase/netbase_4.14.oe
+++ b/netbase/netbase_4.14.oe
@@ -0,0 +1,27 @@
+PR=r1
+
+SRC_URI = ${DEBIAN_MIRROR}/main/n/${PN}/${PN}_${PV}.tar.gz
+
+do_install () {
+ install -d ${D}/etc/init.d ${D}/${sbindir} ${D}/${mandir}/man8
+ install -m 0644 ${FILESDIR}/init ${D}/etc/init.d/networking
+ install -m 0644 etc-rpc ${D}/etc/rpc
+ install -m 0644 etc-protocols ${D}/etc/protocols
+ install -m 0644 etc-services ${D}/etc/services
+ install -m 0755 update-inetd ${D}/${sbindir}/
+ install -m 0644 update-inetd.8 ${D}/${mandir}/man8/
+}
+
+pkg_postinst () {
+ if test -n "$D"; then
+ D="-r $D"
+ fi
+ update-rc.d $D networking start 40 S . stop 40 0 6 1 .
+}
+
+pkg_prerm () {
+ if test -n "$D"; then
+ D="-r $D"
+ fi
+ update-rc.d $D networking remove
+}