From patchwork Tue Mar 13 07:58:41 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [CONSOLIDATED,PULL,07/23] dpkg: rename postinst trigger script Date: Tue, 13 Mar 2012 07:58:41 -0000 From: Saul Wold X-Patchwork-Id: 23111 Message-Id: <75860c4ab344c359756d983c193add6524d3aea2.1331589797.git.sgw@linux.intel.com> To: openembedded-core@lists.openembedded.org From: Otavio Salvador Use 'run-postinsts' as trigger script name as it describes better the intent of it. Signed-off-by: Otavio Salvador --- meta/recipes-devtools/dpkg/dpkg.inc | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/meta/recipes-devtools/dpkg/dpkg.inc b/meta/recipes-devtools/dpkg/dpkg.inc index 69fd50a..09bfbbc 100644 --- a/meta/recipes-devtools/dpkg/dpkg.inc +++ b/meta/recipes-devtools/dpkg/dpkg.inc @@ -42,9 +42,9 @@ do_install_prepend () { # this happens at S98 where our good 'ole packages script used to run printf "#!/bin/sh dpkg --configure -a -rm -f ${sysconfdir}/rcS.d/S${DPKG_INIT_POSITION}configure -" > ${D}/${sysconfdir}/rcS.d/S${DPKG_INIT_POSITION}configure - chmod 0755 ${D}/${sysconfdir}/rcS.d/S${DPKG_INIT_POSITION}configure +rm -f ${sysconfdir}/rcS.d/S${DPKG_INIT_POSITION}run-postinsts +" > ${D}/${sysconfdir}/rcS.d/S${DPKG_INIT_POSITION}run-postinsts + chmod 0755 ${D}/${sysconfdir}/rcS.d/S${DPKG_INIT_POSITION}run-postinsts } do_install_append () {