All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH][meta-oe] systemd: add postrm u-a calls
@ 2011-11-09 19:23 Martin Jansa
  2011-11-10  7:44 ` Anders Darander
  0 siblings, 1 reply; 9+ messages in thread
From: Martin Jansa @ 2011-11-09 19:23 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta-oe/recipes-core/systemd/systemd_git.bb |   11 +++++++++--
 1 files changed, 9 insertions(+), 2 deletions(-)

diff --git a/meta-oe/recipes-core/systemd/systemd_git.bb b/meta-oe/recipes-core/systemd/systemd_git.bb
index 90862a3..d1d4306 100644
--- a/meta-oe/recipes-core/systemd/systemd_git.bb
+++ b/meta-oe/recipes-core/systemd/systemd_git.bb
@@ -14,7 +14,7 @@ inherit gitpkgv
 PKGV = "v${GITPKGVTAG}"
 
 PV = "git"
-PR = "r5"
+PR = "r6"
 
 inherit useradd pkgconfig autotools vala perlnative
 
@@ -108,7 +108,6 @@ RRECOMMENDS_${PN} += "kbd kbd-consolefonts \
 
 # TODO:
 # u-a for runlevel and telinit
-# u-a prerm
 
 pkg_postinst_systemd () {
 update-alternatives --install ${base_sbindir}/init init ${base_bindir}/systemd 300
@@ -117,3 +116,11 @@ update-alternatives --install ${base_sbindir}/reboot reboot ${base_bindir}/syste
 update-alternatives --install ${base_sbindir}/shutdown shutdown ${base_bindir}/systemctl 300
 update-alternatives --install ${base_sbindir}/poweroff poweroff ${base_bindir}/systemctl 300
 }
+
+pkg_postrm_systemd () {
+update-alternatives --remove init ${base_bindir}/systemd
+update-alternatives --remove halt ${base_bindir}/systemctl
+update-alternatives --remove reboot ${base_bindir}/systemctl
+update-alternatives --remove shutdown ${base_bindir}/systemctl
+update-alternatives --remove poweroff ${base_bindir}/systemctl
+}
-- 
1.7.8.rc1




^ permalink raw reply related	[flat|nested] 9+ messages in thread

* Re: [PATCH][meta-oe] systemd: add postrm u-a calls
  2011-11-09 19:23 [PATCH][meta-oe] systemd: add postrm u-a calls Martin Jansa
@ 2011-11-10  7:44 ` Anders Darander
  2011-11-10  7:56   ` Martin Jansa
  0 siblings, 1 reply; 9+ messages in thread
From: Anders Darander @ 2011-11-10  7:44 UTC (permalink / raw)
  To: openembedded-devel

* Martin Jansa <martin.jansa@gmail.com> [111109 20:25]:
> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
> ---
>  meta-oe/recipes-core/systemd/systemd_git.bb |   11 +++++++++--
>  1 files changed, 9 insertions(+), 2 deletions(-)

> diff --git a/meta-oe/recipes-core/systemd/systemd_git.bb b/meta-oe/recipes-core/systemd/systemd_git.bb
> index 90862a3..d1d4306 100644
> --- a/meta-oe/recipes-core/systemd/systemd_git.bb
> +++ b/meta-oe/recipes-core/systemd/systemd_git.bb
> @@ -14,7 +14,7 @@ inherit gitpkgv
>  # TODO:
>  # u-a for runlevel and telinit
> -# u-a prerm

Here on your todo list, it stated u-a for prerm, but you applied it to
the postrm. In this case, it probably doesn't really matter, but I'd
still guess that it would make more sense to remove the u-a before
removing the binaries. Although, I don't think it'll actually cause any
problems in this case.

Cheers,
Anders

>  pkg_postinst_systemd () {
>  update-alternatives --install ${base_sbindir}/init init ${base_bindir}/systemd 300
> @@ -117,3 +116,11 @@ update-alternatives --install ${base_sbindir}/reboot reboot ${base_bindir}/syste
>  update-alternatives --install ${base_sbindir}/shutdown shutdown ${base_bindir}/systemctl 300
>  update-alternatives --install ${base_sbindir}/poweroff poweroff ${base_bindir}/systemctl 300
>  }
> +
> +pkg_postrm_systemd () {
> +update-alternatives --remove init ${base_bindir}/systemd
> +update-alternatives --remove halt ${base_bindir}/systemctl
> +update-alternatives --remove reboot ${base_bindir}/systemctl
> +update-alternatives --remove shutdown ${base_bindir}/systemctl
> +update-alternatives --remove poweroff ${base_bindir}/systemctl
> +}
-- 
Anders Darander
ChargeStorm AB / eStorm AB



^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH][meta-oe] systemd: add postrm u-a calls
  2011-11-10  7:44 ` Anders Darander
@ 2011-11-10  7:56   ` Martin Jansa
  2011-11-10  8:22     ` Anders Darander
  0 siblings, 1 reply; 9+ messages in thread
From: Martin Jansa @ 2011-11-10  7:56 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 2355 bytes --]

On Thu, Nov 10, 2011 at 08:44:49AM +0100, Anders Darander wrote:
> * Martin Jansa <martin.jansa@gmail.com> [111109 20:25]:
> > Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
> > ---
> >  meta-oe/recipes-core/systemd/systemd_git.bb |   11 +++++++++--
> >  1 files changed, 9 insertions(+), 2 deletions(-)
> 
> > diff --git a/meta-oe/recipes-core/systemd/systemd_git.bb b/meta-oe/recipes-core/systemd/systemd_git.bb
> > index 90862a3..d1d4306 100644
> > --- a/meta-oe/recipes-core/systemd/systemd_git.bb
> > +++ b/meta-oe/recipes-core/systemd/systemd_git.bb
> > @@ -14,7 +14,7 @@ inherit gitpkgv
> >  # TODO:
> >  # u-a for runlevel and telinit
> > -# u-a prerm
> 
> Here on your todo list, it stated u-a for prerm, but you applied it to
> the postrm. In this case, it probably doesn't really matter, but I'd
> still guess that it would make more sense to remove the u-a before
> removing the binaries. Although, I don't think it'll actually cause any
> problems in this case.

I did what u-a.bbclass usually do.. if you think it should be in prerm
then it would be best to first fix in u-a.bbclass and then we can update
the rest of metadata.

Cheers,

> 
> Cheers,
> Anders
> 
> >  pkg_postinst_systemd () {
> >  update-alternatives --install ${base_sbindir}/init init ${base_bindir}/systemd 300
> > @@ -117,3 +116,11 @@ update-alternatives --install ${base_sbindir}/reboot reboot ${base_bindir}/syste
> >  update-alternatives --install ${base_sbindir}/shutdown shutdown ${base_bindir}/systemctl 300
> >  update-alternatives --install ${base_sbindir}/poweroff poweroff ${base_bindir}/systemctl 300
> >  }
> > +
> > +pkg_postrm_systemd () {
> > +update-alternatives --remove init ${base_bindir}/systemd
> > +update-alternatives --remove halt ${base_bindir}/systemctl
> > +update-alternatives --remove reboot ${base_bindir}/systemctl
> > +update-alternatives --remove shutdown ${base_bindir}/systemctl
> > +update-alternatives --remove poweroff ${base_bindir}/systemctl
> > +}
> -- 
> Anders Darander
> ChargeStorm AB / eStorm AB
> 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH][meta-oe] systemd: add postrm u-a calls
  2011-11-10  7:56   ` Martin Jansa
@ 2011-11-10  8:22     ` Anders Darander
  2011-11-16 14:15       ` Martin Jansa
  0 siblings, 1 reply; 9+ messages in thread
From: Anders Darander @ 2011-11-10  8:22 UTC (permalink / raw)
  To: openembedded-devel

* Martin Jansa <martin.jansa@gmail.com> [111110 08:57]:
> On Thu, Nov 10, 2011 at 08:44:49AM +0100, Anders Darander wrote:
> > * Martin Jansa <martin.jansa@gmail.com> [111109 20:25]:
> > > Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
> > > ---
> > >  meta-oe/recipes-core/systemd/systemd_git.bb |   11 +++++++++--
> > >  1 files changed, 9 insertions(+), 2 deletions(-)

> > > diff --git a/meta-oe/recipes-core/systemd/systemd_git.bb b/meta-oe/recipes-core/systemd/systemd_git.bb
> > > index 90862a3..d1d4306 100644
> > > --- a/meta-oe/recipes-core/systemd/systemd_git.bb
> > > +++ b/meta-oe/recipes-core/systemd/systemd_git.bb
> > > @@ -14,7 +14,7 @@ inherit gitpkgv
> > >  # TODO:
> > >  # u-a for runlevel and telinit
> > > -# u-a prerm

> > Here on your todo list, it stated u-a for prerm, but you applied it to
> > the postrm. In this case, it probably doesn't really matter, but I'd
> > still guess that it would make more sense to remove the u-a before
> > removing the binaries. Although, I don't think it'll actually cause any
> > problems in this case.

> I did what u-a.bbclass usually do.. if you think it should be in prerm
> then it would be best to first fix in u-a.bbclass and then we can update
> the rest of metadata.

Yeah, like I said, is't likely not a real problem. There'll probably
just be a tiny window during which, in this case, e.g. reboot isn't
available, before u-a has been told to change the reboot link.

I'm currently just a little bit catious as I've recently stumbled upon
post-/prerm issues using rpm... (Although the ones I know of (busybox
updates, rsyslog removal) are either fixed or there has been patches
submitted).

I'll see if I ever get the time to look into it.

Cheers,
Anders

-- 
Anders Darander
ChargeStorm AB / eStorm AB



^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH][meta-oe] systemd: add postrm u-a calls
  2011-11-10  8:22     ` Anders Darander
@ 2011-11-16 14:15       ` Martin Jansa
  2011-11-21  8:46         ` Martin Jansa
  0 siblings, 1 reply; 9+ messages in thread
From: Martin Jansa @ 2011-11-16 14:15 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 2018 bytes --]

On Thu, Nov 10, 2011 at 09:22:12AM +0100, Anders Darander wrote:
> * Martin Jansa <martin.jansa@gmail.com> [111110 08:57]:
> > On Thu, Nov 10, 2011 at 08:44:49AM +0100, Anders Darander wrote:
> > > * Martin Jansa <martin.jansa@gmail.com> [111109 20:25]:
> > > > Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
> > > > ---
> > > >  meta-oe/recipes-core/systemd/systemd_git.bb |   11 +++++++++--
> > > >  1 files changed, 9 insertions(+), 2 deletions(-)
> 
> > > > diff --git a/meta-oe/recipes-core/systemd/systemd_git.bb b/meta-oe/recipes-core/systemd/systemd_git.bb
> > > > index 90862a3..d1d4306 100644
> > > > --- a/meta-oe/recipes-core/systemd/systemd_git.bb
> > > > +++ b/meta-oe/recipes-core/systemd/systemd_git.bb
> > > > @@ -14,7 +14,7 @@ inherit gitpkgv
> > > >  # TODO:
> > > >  # u-a for runlevel and telinit
> > > > -# u-a prerm
> 
> > > Here on your todo list, it stated u-a for prerm, but you applied it to
> > > the postrm. In this case, it probably doesn't really matter, but I'd
> > > still guess that it would make more sense to remove the u-a before
> > > removing the binaries. Although, I don't think it'll actually cause any
> > > problems in this case.
> 
> > I did what u-a.bbclass usually do.. if you think it should be in prerm
> > then it would be best to first fix in u-a.bbclass and then we can update
> > the rest of metadata.
> 
> Yeah, like I said, is't likely not a real problem. There'll probably
> just be a tiny window during which, in this case, e.g. reboot isn't
> available, before u-a has been told to change the reboot link.
> 
> I'm currently just a little bit catious as I've recently stumbled upon
> post-/prerm issues using rpm... (Although the ones I know of (busybox
> updates, rsyslog removal) are either fixed or there has been patches
> submitted).

So should I change postrm to prerm in this patch or is there other
reason why it wasn't applied yet?

Cheers,

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH][meta-oe] systemd: add postrm u-a calls
  2011-11-16 14:15       ` Martin Jansa
@ 2011-11-21  8:46         ` Martin Jansa
  2011-11-21  9:33           ` Koen Kooi
  0 siblings, 1 reply; 9+ messages in thread
From: Martin Jansa @ 2011-11-21  8:46 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 2156 bytes --]

On Wed, Nov 16, 2011 at 03:15:17PM +0100, Martin Jansa wrote:
> On Thu, Nov 10, 2011 at 09:22:12AM +0100, Anders Darander wrote:
> > * Martin Jansa <martin.jansa@gmail.com> [111110 08:57]:
> > > On Thu, Nov 10, 2011 at 08:44:49AM +0100, Anders Darander wrote:
> > > > * Martin Jansa <martin.jansa@gmail.com> [111109 20:25]:
> > > > > Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
> > > > > ---
> > > > >  meta-oe/recipes-core/systemd/systemd_git.bb |   11 +++++++++--
> > > > >  1 files changed, 9 insertions(+), 2 deletions(-)
> > 
> > > > > diff --git a/meta-oe/recipes-core/systemd/systemd_git.bb b/meta-oe/recipes-core/systemd/systemd_git.bb
> > > > > index 90862a3..d1d4306 100644
> > > > > --- a/meta-oe/recipes-core/systemd/systemd_git.bb
> > > > > +++ b/meta-oe/recipes-core/systemd/systemd_git.bb
> > > > > @@ -14,7 +14,7 @@ inherit gitpkgv
> > > > >  # TODO:
> > > > >  # u-a for runlevel and telinit
> > > > > -# u-a prerm
> > 
> > > > Here on your todo list, it stated u-a for prerm, but you applied it to
> > > > the postrm. In this case, it probably doesn't really matter, but I'd
> > > > still guess that it would make more sense to remove the u-a before
> > > > removing the binaries. Although, I don't think it'll actually cause any
> > > > problems in this case.
> > 
> > > I did what u-a.bbclass usually do.. if you think it should be in prerm
> > > then it would be best to first fix in u-a.bbclass and then we can update
> > > the rest of metadata.
> > 
> > Yeah, like I said, is't likely not a real problem. There'll probably
> > just be a tiny window during which, in this case, e.g. reboot isn't
> > available, before u-a has been told to change the reboot link.
> > 
> > I'm currently just a little bit catious as I've recently stumbled upon
> > post-/prerm issues using rpm... (Although the ones I know of (busybox
> > updates, rsyslog removal) are either fixed or there has been patches
> > submitted).
> 
> So should I change postrm to prerm in this patch or is there other
> reason why it wasn't applied yet?

ping

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH][meta-oe] systemd: add postrm u-a calls
  2011-11-21  8:46         ` Martin Jansa
@ 2011-11-21  9:33           ` Koen Kooi
  2011-11-21  9:45             ` [meta-oe v2] systemd: add prerm " Martin Jansa
  2011-11-21 11:06             ` [PATCH][meta-oe] systemd: add postrm " Anders Darander
  0 siblings, 2 replies; 9+ messages in thread
From: Koen Kooi @ 2011-11-21  9:33 UTC (permalink / raw)
  To: openembedded-devel

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Op 21-11-11 09:46, Martin Jansa schreef:
> On Wed, Nov 16, 2011 at 03:15:17PM +0100, Martin Jansa wrote:
>> On Thu, Nov 10, 2011 at 09:22:12AM +0100, Anders Darander wrote:
>>> * Martin Jansa <martin.jansa@gmail.com> [111110 08:57]:
>>>> On Thu, Nov 10, 2011 at 08:44:49AM +0100, Anders Darander wrote:
>>>>> * Martin Jansa <martin.jansa@gmail.com> [111109 20:25]:
>>>>>> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> --- 
>>>>>> meta-oe/recipes-core/systemd/systemd_git.bb |   11 +++++++++-- 
>>>>>> 1 files changed, 9 insertions(+), 2 deletions(-)
>>> 
>>>>>> diff --git a/meta-oe/recipes-core/systemd/systemd_git.bb
>>>>>> b/meta-oe/recipes-core/systemd/systemd_git.bb index
>>>>>> 90862a3..d1d4306 100644 ---
>>>>>> a/meta-oe/recipes-core/systemd/systemd_git.bb +++
>>>>>> b/meta-oe/recipes-core/systemd/systemd_git.bb @@ -14,7 +14,7 @@
>>>>>> inherit gitpkgv # TODO: # u-a for runlevel and telinit -# u-a
>>>>>> prerm
>>> 
>>>>> Here on your todo list, it stated u-a for prerm, but you applied
>>>>> it to the postrm. In this case, it probably doesn't really
>>>>> matter, but I'd still guess that it would make more sense to
>>>>> remove the u-a before removing the binaries. Although, I don't
>>>>> think it'll actually cause any problems in this case.
>>> 
>>>> I did what u-a.bbclass usually do.. if you think it should be in
>>>> prerm then it would be best to first fix in u-a.bbclass and then we
>>>> can update the rest of metadata.
>>> 
>>> Yeah, like I said, is't likely not a real problem. There'll probably 
>>> just be a tiny window during which, in this case, e.g. reboot isn't 
>>> available, before u-a has been told to change the reboot link.
>>> 
>>> I'm currently just a little bit catious as I've recently stumbled
>>> upon post-/prerm issues using rpm... (Although the ones I know of
>>> (busybox updates, rsyslog removal) are either fixed or there has been
>>> patches submitted).
>> 
>> So should I change postrm to prerm in this patch or is there other 
>> reason why it wasn't applied yet?

I was waiting for Anders to comment on it :) Changing to prerm would be better.

regards,

Koen
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (Darwin)
Comment: GPGTools - http://gpgtools.org

iEYEARECAAYFAk7KGs8ACgkQMkyGM64RGpFddACghK4Srey32MmPC9KSCl5uLP4T
KDwAoKc4IGiGwRrOVXzgRtHTjmhxYzra
=QnvQ
-----END PGP SIGNATURE-----




^ permalink raw reply	[flat|nested] 9+ messages in thread

* [meta-oe v2] systemd: add prerm u-a calls
  2011-11-21  9:33           ` Koen Kooi
@ 2011-11-21  9:45             ` Martin Jansa
  2011-11-21 11:06             ` [PATCH][meta-oe] systemd: add postrm " Anders Darander
  1 sibling, 0 replies; 9+ messages in thread
From: Martin Jansa @ 2011-11-21  9:45 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta-oe/recipes-core/systemd/systemd_git.bb |    9 ++++++++-
 1 files changed, 8 insertions(+), 1 deletions(-)

diff --git a/meta-oe/recipes-core/systemd/systemd_git.bb b/meta-oe/recipes-core/systemd/systemd_git.bb
index 7b0771a..228e0e4 100644
--- a/meta-oe/recipes-core/systemd/systemd_git.bb
+++ b/meta-oe/recipes-core/systemd/systemd_git.bb
@@ -108,7 +108,6 @@ RRECOMMENDS_${PN} += "kbd kbd-consolefonts \
 
 # TODO:
 # u-a for runlevel and telinit
-# u-a prerm
 
 pkg_postinst_systemd () {
 update-alternatives --install ${base_sbindir}/init init ${base_bindir}/systemd 300
@@ -117,3 +116,11 @@ update-alternatives --install ${base_sbindir}/reboot reboot ${base_bindir}/syste
 update-alternatives --install ${base_sbindir}/shutdown shutdown ${base_bindir}/systemctl 300
 update-alternatives --install ${base_sbindir}/poweroff poweroff ${base_bindir}/systemctl 300
 }
+
+pkg_prerm_systemd () {
+update-alternatives --remove init ${base_bindir}/systemd
+update-alternatives --remove halt ${base_bindir}/systemctl
+update-alternatives --remove reboot ${base_bindir}/systemctl
+update-alternatives --remove shutdown ${base_bindir}/systemctl
+update-alternatives --remove poweroff ${base_bindir}/systemctl
+}
-- 
1.7.8.rc3




^ permalink raw reply related	[flat|nested] 9+ messages in thread

* Re: [PATCH][meta-oe] systemd: add postrm u-a calls
  2011-11-21  9:33           ` Koen Kooi
  2011-11-21  9:45             ` [meta-oe v2] systemd: add prerm " Martin Jansa
@ 2011-11-21 11:06             ` Anders Darander
  1 sibling, 0 replies; 9+ messages in thread
From: Anders Darander @ 2011-11-21 11:06 UTC (permalink / raw)
  To: openembedded-devel

* Koen Kooi <koen@dominion.thruhere.net> [111121 10:34]:
> Op 21-11-11 09:46, Martin Jansa schreef:
> > On Wed, Nov 16, 2011 at 03:15:17PM +0100, Martin Jansa wrote:
> >> On Thu, Nov 10, 2011 at 09:22:12AM +0100, Anders Darander wrote:
> >>> * Martin Jansa <martin.jansa@gmail.com> [111110 08:57]:
> >>>> On Thu, Nov 10, 2011 at 08:44:49AM +0100, Anders Darander wrote:
> >>>>> * Martin Jansa <martin.jansa@gmail.com> [111109 20:25]:
> >>>>>> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> --- 
> >>>>>> meta-oe/recipes-core/systemd/systemd_git.bb |   11 +++++++++-- 
> >>>>>> 1 files changed, 9 insertions(+), 2 deletions(-)

> >>>>>> diff --git a/meta-oe/recipes-core/systemd/systemd_git.bb
> >>>>>> b/meta-oe/recipes-core/systemd/systemd_git.bb index
> >>>>>> 90862a3..d1d4306 100644 ---
> >>>>>> a/meta-oe/recipes-core/systemd/systemd_git.bb +++
> >>>>>> b/meta-oe/recipes-core/systemd/systemd_git.bb @@ -14,7 +14,7 @@
> >>>>>> inherit gitpkgv # TODO: # u-a for runlevel and telinit -# u-a
> >>>>>> prerm

> >>>>> Here on your todo list, it stated u-a for prerm, but you applied
> >>>>> it to the postrm. In this case, it probably doesn't really
> >>>>> matter, but I'd still guess that it would make more sense to
> >>>>> remove the u-a before removing the binaries. Although, I don't
> >>>>> think it'll actually cause any problems in this case.

> >>>> I did what u-a.bbclass usually do.. if you think it should be in
> >>>> prerm then it would be best to first fix in u-a.bbclass and then we
> >>>> can update the rest of metadata.

> >>> Yeah, like I said, is't likely not a real problem. There'll probably 
> >>> just be a tiny window during which, in this case, e.g. reboot isn't 
> >>> available, before u-a has been told to change the reboot link.

> >>> I'm currently just a little bit catious as I've recently stumbled
> >>> upon post-/prerm issues using rpm... (Although the ones I know of
> >>> (busybox updates, rsyslog removal) are either fixed or there has been
> >>> patches submitted).

> >> So should I change postrm to prerm in this patch or is there other 
> >> reason why it wasn't applied yet?

> I was waiting for Anders to comment on it :) Changing to prerm would be better.

Sorry, for the delay. I've been out of the loop for almost a week
(hardly read any emails at all).

Well, prerm would probably be better, as Koen stated, not least
long-ternm. But postrm has been working as far as I see, so I'll leave
it to you to decide.

Cheers,
/Anders

-- 
Anders Darander
ChargeStorm AB / eStorm AB



^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2011-11-21 11:12 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-11-09 19:23 [PATCH][meta-oe] systemd: add postrm u-a calls Martin Jansa
2011-11-10  7:44 ` Anders Darander
2011-11-10  7:56   ` Martin Jansa
2011-11-10  8:22     ` Anders Darander
2011-11-16 14:15       ` Martin Jansa
2011-11-21  8:46         ` Martin Jansa
2011-11-21  9:33           ` Koen Kooi
2011-11-21  9:45             ` [meta-oe v2] systemd: add prerm " Martin Jansa
2011-11-21 11:06             ` [PATCH][meta-oe] systemd: add postrm " Anders Darander

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.