diff options
author | Kai Kang <kai.kang@windriver.com> | 2015-07-20 15:59:04 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-07-23 08:48:39 +0100 |
commit | 99b082d0b61cecec1f4e12b3c5d54080f27281e4 (patch) | |
tree | 0f64787db9cc332902bbc458ef03c80d18228dab | |
parent | 31531dd0c4b6093f4834aeb06e3fb34d7fd104e4 (diff) | |
download | poky-99b082d0b61cecec1f4e12b3c5d54080f27281e4.tar.gz |
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>
-rw-r--r-- | meta/recipes-core/volatile-binds/files/volatile-binds.service.in | 2 |
1 files changed, 1 insertions, 1 deletions
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 32be5b4425..b23355a714 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 | |||
13 | StandardOutput=syslog | 13 | StandardOutput=syslog |
14 | TimeoutSec=0 | 14 | TimeoutSec=0 |
15 | ExecStart=/sbin/mount-copybind @what@ @where@ | 15 | ExecStart=/sbin/mount-copybind @what@ @where@ |
16 | ExecStop=/sbin/umount @where@ | 16 | ExecStop=/bin/umount @where@ |
17 | 17 | ||
18 | [Install] | 18 | [Install] |
19 | WantedBy=local-fs.target | 19 | WantedBy=local-fs.target |