From: Matt Ranostay Date: Tue, 11 Apr 2017 01:08:58 +0000 (+0300) Subject: systemd: remove force flag to mount in mount.sh X-Git-Tag: 3.99.1~68 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F79%2F9079%2F2;p=AGL%2Fmeta-agl.git 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 --- 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 ];