[oe-commits] Kai Kang : volatile-binds: correct path of command umount

git at git.openembedded.org git at git.openembedded.org
Mon Aug 10 19:41:15 UTC 2015


Module: openembedded-core.git
Branch: fido
Commit: a56df1b057b6d77861ac73db6252472ca7e35d08
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=a56df1b057b6d77861ac73db6252472ca7e35d08

Author: Kai Kang <kai.kang at windriver.com>
Date:   Mon Jul 20 15:59:04 2015 +0800

volatile-binds: correct path of command umount

It calls /sbin/umount to stop service var-volatile-lib. But umount is
installed into directory /bin. Correct it.

(From OE-Core rev: 55851c6f389cb027496c96f6e0609c8892032e4d)

Signed-off-by: Kai Kang <kai.kang at windriver.com>
Signed-off-by: Ross Burton <ross.burton at intel.com>
Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 meta/recipes-core/volatile-binds/files/volatile-binds.service.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-core/volatile-binds/files/volatile-binds.service.in b/meta/recipes-core/volatile-binds/files/volatile-binds.service.in
index 32be5b4..b23355a 100644
--- a/meta/recipes-core/volatile-binds/files/volatile-binds.service.in
+++ b/meta/recipes-core/volatile-binds/files/volatile-binds.service.in
@@ -13,7 +13,7 @@ RemainAfterExit=Yes
 StandardOutput=syslog
 TimeoutSec=0
 ExecStart=/sbin/mount-copybind @what@ @where@
-ExecStop=/sbin/umount @where@
+ExecStop=/bin/umount @where@
 
 [Install]
 WantedBy=local-fs.target



More information about the Openembedded-commits mailing list