systemd: remove force flag to mount in mount.sh 79/9079/2
authorMatt Ranostay <matt.ranostay@konsulko.com>
Tue, 11 Apr 2017 01:08:58 +0000 (04:08 +0300)
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>
Wed, 12 Apr 2017 10:54:18 +0000 (10:54 +0000)
Using the force flag causes some artifacts to exist and also
breaks the blocking check till unmount is complete.

Change-Id: Idfc8268a2e1f8cd0905b5f8b11f53d416d251d90
Bug-AGL: SPEC-483
Signed-off-by: Matt Ranostay <matt.ranostay@konsulko.com>
meta-agl/recipes-core/systemd/systemd/mount.sh

index cd72b05..811e025 100644 (file)
@@ -7,7 +7,7 @@
 
 MOUNT="/bin/mount -o ro"
 PMOUNT="/usr/bin/pmount"
-UMOUNT="/bin/umount -f"
+UMOUNT="/bin/umount"
 for line in `grep -h -v ^# /etc/udev/mount.blacklist /etc/udev/mount.blacklist.d/*`
 do
        if [ ` expr match "$DEVNAME" "$line" ` -gt 0 ];