Added update-rc.d in postinst
authorOyvind Repvik <nail@nslu2-linux.org>
Tue, 2 Aug 2005 18:22:45 +0000 (18:22 +0000)
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>
Tue, 2 Aug 2005 18:22:45 +0000 (18:22 +0000)
packages/thttpd/thttpd_2.25b.bb

index 9a3ac3a..f33ff59 100644 (file)
@@ -2,7 +2,7 @@ DESCRIPTION = "A simple, small, portable, fast, and secure HTTP server."
 LICENSE = "BSD"
 MAINTAINER = "Chris Larson <kergoth@handhelds.org>"
 HOMEPAGE = "http://www.acme.com/software/thttpd/"
-PR="r2"
+PR="r3"
 
 SRC_URI = "http://www.acme.com/software/thttpd/thttpd-2.25b.tar.gz \
           file://install.patch;patch=1 \
@@ -27,3 +27,12 @@ do_install_append () {
        cat ${WORKDIR}/init | sed -e 's,@@SRVDIR,${servicedir}/www,g' > ${WORKDIR}/thttpd
        install -c -m 755 ${WORKDIR}/thttpd ${D}${sysconfdir}/init.d/thttpd
 }
+
+pkg_postinst() {
+        update-rc.d thttpd defaults 67
+}
+
+pkg_postrm() {
+        update-rc.d thttpd remove
+}
+