From: Oyvind Repvik Date: Tue, 2 Aug 2005 18:22:45 +0000 (+0000) Subject: Added update-rc.d in postinst X-Git-Tag: Release-2010-05/1~9453^2~4008 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ae09b22936efb65b90d1a658d4030a75ee567fcb;p=openembedded.git Added update-rc.d in postinst --- diff --git a/packages/thttpd/thttpd_2.25b.bb b/packages/thttpd/thttpd_2.25b.bb index 9a3ac3af11..f33ff5924e 100644 --- a/packages/thttpd/thttpd_2.25b.bb +++ b/packages/thttpd/thttpd_2.25b.bb @@ -2,7 +2,7 @@ DESCRIPTION = "A simple, small, portable, fast, and secure HTTP server." LICENSE = "BSD" MAINTAINER = "Chris Larson " 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 +} +