* [PATCH 0/1] V2: Fix can not stop systemd service var-volatile-lib
@ 2015-07-20 7:59 Kai Kang
2015-07-20 7:59 ` [PATCH 1/1] volatile-binds: correct path of command umount Kai Kang
0 siblings, 1 reply; 2+ messages in thread
From: Kai Kang @ 2015-07-20 7:59 UTC (permalink / raw)
To: ross.burton; +Cc: openembedded-core
V2:
* modify volatile-binds.service.in directly
The following changes since commit a15b26de4b407726d3ba9bd1e888b2f1d2c586f5:
dbus-ptest: set INSANE_SKIP for build-deps (2015-07-13 13:48:52 +0100)
are available in the git repository at:
git://git.yoctoproject.org/poky-contrib kangkai/volatile-bind
http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=kangkai/volatile-bind
Kai Kang (1):
volatile-binds: correct path of command umount
meta/recipes-core/volatile-binds/files/volatile-binds.service.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
1.9.1
^ permalink raw reply [flat|nested] 2+ messages in thread
* [PATCH 1/1] volatile-binds: correct path of command umount
2015-07-20 7:59 [PATCH 0/1] V2: Fix can not stop systemd service var-volatile-lib Kai Kang
@ 2015-07-20 7:59 ` Kai Kang
0 siblings, 0 replies; 2+ messages in thread
From: Kai Kang @ 2015-07-20 7:59 UTC (permalink / raw)
To: ross.burton; +Cc: openembedded-core
It calls /sbin/umount to stop service var-volatile-lib. But umount is
installed into directory /bin. Correct it.
Signed-off-by: Kai Kang <kai.kang@windriver.com>
---
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
--
1.9.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2015-07-20 8:00 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-20 7:59 [PATCH 0/1] V2: Fix can not stop systemd service var-volatile-lib Kai Kang
2015-07-20 7:59 ` [PATCH 1/1] volatile-binds: correct path of command umount Kai Kang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox