summaryrefslogtreecommitdiffstats
path: root/meta-agl
diff options
context:
space:
mode:
authorMatt Ranostay <matt.ranostay@konsulko.com>2017-04-11 04:08:58 +0300
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>2017-04-12 10:54:18 +0000
commitd4d068842d5f2a761df99053e5c613f9e4bb2124 (patch)
tree9ffdb2592723d3f5f1056a71bb86e8dcb1706b6e /meta-agl
parentf8f62f17ebbe6b63d0c8c941074bc281a31ac71c (diff)
systemd: remove force flag to mount in mount.sh
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>
Diffstat (limited to 'meta-agl')
-rw-r--r--meta-agl/recipes-core/systemd/systemd/mount.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-agl/recipes-core/systemd/systemd/mount.sh b/meta-agl/recipes-core/systemd/systemd/mount.sh
index cd72b05cc..811e025bc 100644
--- a/meta-agl/recipes-core/systemd/systemd/mount.sh
+++ b/meta-agl/recipes-core/systemd/systemd/mount.sh
@@ -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 ];