All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] systemd: pre-pivot hooks runs after /sysroot is mounted
@ 2013-08-16  5:13 WANG Chao
       [not found] ` <20130816051328.GA30982-ALckc1lQpMDv8MId6FTy5BcY2uh10dtjAL8bYrjMMd8@public.gmane.org>
  0 siblings, 1 reply; 3+ messages in thread
From: WANG Chao @ 2013-08-16  5:13 UTC (permalink / raw)
  To: Harald Hoyer; +Cc: initramfs-u79uwXL29TY76Z2rM5mHXA

If rootflags=nofail, sysroot.mount won't strictly run "Before"
initrd-root-fs.target. So we need to order dracut-pre-pivot after
sysroot.mount.
---
 modules.d/98systemd/dracut-pre-pivot.service | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules.d/98systemd/dracut-pre-pivot.service b/modules.d/98systemd/dracut-pre-pivot.service
index 56818b9..dd4e49b 100644
--- a/modules.d/98systemd/dracut-pre-pivot.service
+++ b/modules.d/98systemd/dracut-pre-pivot.service
@@ -10,7 +10,7 @@
 [Unit]
 Description=dracut pre-pivot and cleanup hook
 Documentation=man:dracut-pre-pivot.service(8)
-After=initrd.target initrd-parse-etc.service
+After=initrd.target initrd-parse-etc.service sysroot.mount
 After=dracut-initqueue.service dracut-pre-mount.service dracut-mount.service
 Before=initrd-cleanup.service
 ConditionPathExists=/etc/initrd-release
-- 
1.8.3.1

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

* Re: [PATCH] systemd: pre-pivot hooks runs after /sysroot is mounted
       [not found] ` <20130816051328.GA30982-ALckc1lQpMDv8MId6FTy5BcY2uh10dtjAL8bYrjMMd8@public.gmane.org>
@ 2013-08-19 13:43   ` WANG Chao
  2013-08-19 13:51   ` Harald Hoyer
  1 sibling, 0 replies; 3+ messages in thread
From: WANG Chao @ 2013-08-19 13:43 UTC (permalink / raw)
  To: Harald Hoyer
  Cc: initramfs-u79uwXL29TY76Z2rM5mHXA,
	kexec-TuqUDEhatI4ANWPb/1PvSmm0pvjS0E/A

On 08/16/13 at 01:13pm, WANG Chao wrote:
> If rootflags=nofail, sysroot.mount won't strictly run "Before"
> initrd-root-fs.target. So we need to order dracut-pre-pivot after
> sysroot.mount.

[ CC kexec-TuqUDEhatI4ANWPb/1PvSmm0pvjS0E/A@public.gmane.org ]

> ---
>  modules.d/98systemd/dracut-pre-pivot.service | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/modules.d/98systemd/dracut-pre-pivot.service b/modules.d/98systemd/dracut-pre-pivot.service
> index 56818b9..dd4e49b 100644
> --- a/modules.d/98systemd/dracut-pre-pivot.service
> +++ b/modules.d/98systemd/dracut-pre-pivot.service
> @@ -10,7 +10,7 @@
>  [Unit]
>  Description=dracut pre-pivot and cleanup hook
>  Documentation=man:dracut-pre-pivot.service(8)
> -After=initrd.target initrd-parse-etc.service
> +After=initrd.target initrd-parse-etc.service sysroot.mount
>  After=dracut-initqueue.service dracut-pre-mount.service dracut-mount.service
>  Before=initrd-cleanup.service
>  ConditionPathExists=/etc/initrd-release
> -- 
> 1.8.3.1
> 

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

* Re: [PATCH] systemd: pre-pivot hooks runs after /sysroot is mounted
       [not found] ` <20130816051328.GA30982-ALckc1lQpMDv8MId6FTy5BcY2uh10dtjAL8bYrjMMd8@public.gmane.org>
  2013-08-19 13:43   ` WANG Chao
@ 2013-08-19 13:51   ` Harald Hoyer
  1 sibling, 0 replies; 3+ messages in thread
From: Harald Hoyer @ 2013-08-19 13:51 UTC (permalink / raw)
  To: WANG Chao; +Cc: initramfs-u79uwXL29TY76Z2rM5mHXA

On 08/16/2013 07:13 AM, WANG Chao wrote:
> If rootflags=nofail, sysroot.mount won't strictly run "Before"
> initrd-root-fs.target. So we need to order dracut-pre-pivot after
> sysroot.mount.
> ---
>  modules.d/98systemd/dracut-pre-pivot.service | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/modules.d/98systemd/dracut-pre-pivot.service b/modules.d/98systemd/dracut-pre-pivot.service
> index 56818b9..dd4e49b 100644
> --- a/modules.d/98systemd/dracut-pre-pivot.service
> +++ b/modules.d/98systemd/dracut-pre-pivot.service
> @@ -10,7 +10,7 @@
>  [Unit]
>  Description=dracut pre-pivot and cleanup hook
>  Documentation=man:dracut-pre-pivot.service(8)
> -After=initrd.target initrd-parse-etc.service
> +After=initrd.target initrd-parse-etc.service sysroot.mount
>  After=dracut-initqueue.service dracut-pre-mount.service dracut-mount.service
>  Before=initrd-cleanup.service
>  ConditionPathExists=/etc/initrd-release
> 

Thanks!

Pushed

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

end of thread, other threads:[~2013-08-19 13:51 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-16  5:13 [PATCH] systemd: pre-pivot hooks runs after /sysroot is mounted WANG Chao
     [not found] ` <20130816051328.GA30982-ALckc1lQpMDv8MId6FTy5BcY2uh10dtjAL8bYrjMMd8@public.gmane.org>
2013-08-19 13:43   ` WANG Chao
2013-08-19 13:51   ` Harald Hoyer

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.