forked from mirrors/nixpkgs
* Ignore remount read-only errors.
svn path=/nixos/trunk/; revision=7630
This commit is contained in:
parent
c7c16f384a
commit
66d4c6c4e2
|
@ -50,7 +50,7 @@ script
|
|||
if umount -f -n \"$mp\"; then
|
||||
if test \"$mp\" != /; then tryAgain=1; fi
|
||||
else
|
||||
mount -n -o remount,ro \"$mp\"
|
||||
mount -n -o remount,ro \"$mp\" || true
|
||||
fi
|
||||
|
||||
# Hack: work around a bug in mount (mount -o remount on a
|
||||
|
|
Loading…
Reference in a new issue