]> code.ossystems Code Review - openembedded-core.git/commitdiff
volatile-binds: correct path of command umount
authorKai Kang <kai.kang@windriver.com>
Mon, 20 Jul 2015 07:59:04 +0000 (15:59 +0800)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Sun, 9 Aug 2015 23:36:52 +0000 (16:36 -0700)
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@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-core/volatile-binds/files/volatile-binds.service.in

index 32be5b4425d725720b5c9879844a06e4c047ba9c..b23355a7140bc30f17f9c76854c57d19769f77dd 100644 (file)
@@ -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