Allow people to use nofail to ignore empty cd/dvd drive errors. URL: https://bugs.gentoo.org/559356 Reported-by: William Hubbs <williamh@xxxxxxxxxx> Signed-off-by: Mike Frysinger <vapier@xxxxxxxxxx> --- sys-utils/mount.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sys-utils/mount.c b/sys-utils/mount.c index 73f9d0b..01eaccb 100644 --- a/sys-utils/mount.c +++ b/sys-utils/mount.c @@ -628,6 +628,9 @@ try_readonly: break; case ENOMEDIUM: + if (uflags & MNT_MS_NOFAIL) + return MOUNT_EX_SUCCESS; + warnx(_("no medium found on %s"), src); break; -- 2.6.2 -- To unsubscribe from this list: send the line "unsubscribe util-linux" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html