and cleanup all references to the filesystem as soon as it is not busy
anymore.
(Requires kernel 2.4.11 or later.)
+.IP "\fB\-\-no\-canonicalize\fP"
+Don't canonicalize paths. For more details about this option see the
+.B mount(8)
+man page.
.SH "THE LOOP DEVICE"
The
{ "version", 0, 0, 'V' },
{ "read-only", 0, 0, 'r' },
{ "types", 1, 0, 't' },
+
+ { "no-canonicalize", 0, 0, 144 },
{ NULL, 0, 0, 0 }
};
types = optarg;
break;
case 'i':
- external_allowed = 0;
+ external_allowed = 0;
+ break;
+ case 144:
+ nocanonicalize = 1;
break;
case 0:
break;
}
}
- if (restricted && (all || types || nomtab || force || remount)) {
+ if (restricted &&
+ (all || types || nomtab || force || remount || nocanonicalize)) {
die (2, _("umount: only root can do that"));
}