forked from pool/systemd
Marcus Meissner
bc83988d29
- Update to new upstream release 218 I really want networkd with a functioning machinectl --network-veth (broken in 13.2). OBS-URL: https://build.opensuse.org/request/show/280821 OBS-URL: https://build.opensuse.org/package/show/Base:System/systemd?expand=0&rev=844
23 lines
964 B
Diff
23 lines
964 B
Diff
---
|
|
src/fstab-generator/fstab-generator.c | 7 +++++--
|
|
1 file changed, 5 insertions(+), 2 deletions(-)
|
|
|
|
Index: systemd-218/src/fstab-generator/fstab-generator.c
|
|
===================================================================
|
|
--- systemd-218.orig/src/fstab-generator/fstab-generator.c
|
|
+++ systemd-218/src/fstab-generator/fstab-generator.c
|
|
@@ -238,8 +238,11 @@ static int add_mount(
|
|
"Documentation=man:fstab(5) man:systemd-fstab-generator(8)\n",
|
|
source);
|
|
|
|
- if (post && !noauto && !nofail && !automount)
|
|
- fprintf(f, "Before=%s\n", post);
|
|
+ if (post && !noauto && !nofail && !automount) {
|
|
+ bool is_nfs = fstype != NULL && streq(fstype, "nfs");
|
|
+ if (!is_nfs || strstr(opts, "bg") == NULL)
|
|
+ fprintf(f, "Before=%s\n", post);
|
|
+ }
|
|
|
|
if (passno != 0) {
|
|
r = generator_write_fsck_deps(f, arg_dest, what, where, fstype);
|