--- systemd-210/src/fstab-generator/fstab-generator.c 2014-02-17 15:49:21.070855641 +0100 +++ systemd-210/src/fstab-generator/fstab-generator.c 2014-04-25 16:25:13.256106126 +0200 @@ -255,10 +255,12 @@ "SourcePath=%s\n", source); - if (post && !noauto && !nofail && !automount) - fprintf(f, - "Before=%s\n", - post); + if (post && !noauto && !nofail && !automount) { + if (!streq(type, "nfs") || (streq(type, "nfs") && !strstr(opts, "bg"))) + fprintf(f, + "Before=%s\n", + post); + } r = add_fsck(f, what, where, type, passno); if (r < 0)