mirror of
https://git.yoctoproject.org/poky
synced 2026-05-31 12:49:46 +00:00
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@windriver.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -13,7 +13,7 @@ RemainAfterExit=Yes
|
|||||||
StandardOutput=syslog
|
StandardOutput=syslog
|
||||||
TimeoutSec=0
|
TimeoutSec=0
|
||||||
ExecStart=/sbin/mount-copybind @what@ @where@
|
ExecStart=/sbin/mount-copybind @what@ @where@
|
||||||
ExecStop=/sbin/umount @where@
|
ExecStop=/bin/umount @where@
|
||||||
|
|
||||||
[Install]
|
[Install]
|
||||||
WantedBy=local-fs.target
|
WantedBy=local-fs.target
|
||||||
|
|||||||
Reference in New Issue
Block a user