All of lore.kernel.org
 help / color / mirror / Atom feed
From: Saul Wold <sgw@linux.intel.com>
To: eu@felipetonello.com
Cc: openembedded-core@lists.openembedded.org
Subject: Re: [PATCH] update-rc: Stop and remove service if updating package
Date: Wed, 02 Oct 2013 16:36:32 -0700	[thread overview]
Message-ID: <524CAE00.4030004@linux.intel.com> (raw)
In-Reply-To: <1380647958-5424-1-git-send-email-eu@felipetonello.com>

On 10/01/2013 10:19 AM, eu@felipetonello.com wrote:
> From: "Felipe F. Tonello" <eu@felipetonello.com>
>
> Since when updating packages packages managers do not remove the previous package,
> it just replaces new files and run pre/post install scripts. This causes not
> to update update-rc scripts if they were changed.
>
> This patch is useful in case the newer package version updated the update-rc
> script.
>

I think this patch might be responsible for some failures I am seeing on 
the master_under_test build.

Check out this error log: 
http://autobuilder.yoctoproject.org:8011/builders/minnow/builds/169/steps/Building%20Images/logs/stdio
Sau!

> Signed-off-by: Felipe F. Tonello <eu@felipetonello.com>
> ---
>   meta/classes/update-rc.d.bbclass | 18 +++++++++++++++++-
>   1 file changed, 17 insertions(+), 1 deletion(-)
>
> diff --git a/meta/classes/update-rc.d.bbclass b/meta/classes/update-rc.d.bbclass
> index 5588569..773ca60 100644
> --- a/meta/classes/update-rc.d.bbclass
> +++ b/meta/classes/update-rc.d.bbclass
> @@ -13,7 +13,23 @@ INITSCRIPT_PARAMS ?= "defaults"
>   INIT_D_DIR = "${sysconfdir}/init.d"
>
>   updatercd_postinst() {
> -if test "x$D" != "x"; then
> +IN_TARGET=`test "x$D" = "x"`
> +
> +# test if there is a previous init script there, ie, we are updating the package
> +# if so, we stop the service and remove it before we install from the new package
> +if type update-rc.d >/dev/null 2>/dev/null; then
> +	if [ $IN_TARGET -a `test -f "${INIT_D_DIR}/${INITSCRIPT_NAME}"` ]; then
> +		${INIT_D_DIR}/${INITSCRIPT_NAME} stop
> +	fi
> +	if [ $IN_TARGET ]; then
> +		OPT="-f -r $D"
> +	else
> +		OPT="-f"
> +	fi
> +	update-rc.d $OPT ${INITSCRIPT_NAME} remove
> +fi
> +
> +if [ $IN_TARGET ]; then
>   	OPT="-r $D"
>   else
>   	OPT="-s"
>


      reply	other threads:[~2013-10-02 23:36 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-10-01 17:19 [PATCH] update-rc: Stop and remove service if updating package eu
2013-10-02 23:36 ` Saul Wold [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=524CAE00.4030004@linux.intel.com \
    --to=sgw@linux.intel.com \
    --cc=eu@felipetonello.com \
    --cc=openembedded-core@lists.openembedded.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.