From: Kai Kang Date: Mon, 20 Jul 2015 07:59:04 +0000 (+0800) Subject: volatile-binds: correct path of command umount X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~29656 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=55851c6f389cb027496c96f6e0609c8892032e4d;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git 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. Signed-off-by: Kai Kang Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- 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 32be5b4425d..b23355a7140 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