diff options
author | José Bollo <jose.bollo@iot.bzh> | 2019-08-16 21:21:00 +0200 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2019-08-20 14:36:52 +0000 |
commit | 6aedcd64444b68349b778005907231e839e280d9 (patch) | |
tree | 90bf4710dd47eb610d4479993992c1b623de2b0e /meta-app-framework/recipes-core/af-binder | |
parent | 66b7eba6ed5a7078bb438842e0e5276b5f192aa6 (diff) |
afs-supervisor: Start the service on need
afs-supervisor.service failed to start the supervisor
due to a non available activation socket.
This change start the api socket and will activate
the service on need.
Bug-AGL: SPEC-2753
Change-Id: I2fd3c2d2d29bce8d70becaba0792918d6f6c0769
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'meta-app-framework/recipes-core/af-binder')
-rw-r--r-- | meta-app-framework/recipes-core/af-binder/af-binder_git.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-app-framework/recipes-core/af-binder/af-binder_git.bb b/meta-app-framework/recipes-core/af-binder/af-binder_git.bb index 29224e6f1..cf20e25a1 100644 --- a/meta-app-framework/recipes-core/af-binder/af-binder_git.bb +++ b/meta-app-framework/recipes-core/af-binder/af-binder_git.bb @@ -21,7 +21,7 @@ pkg_postinst_${PN}() { do_install_append_agl-devel_class-target() { if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then install -d -m 0755 ${D}${systemd_system_unitdir}/multi-user.target.wants - ln -s ../afs-supervisor.service ${D}${systemd_system_unitdir}/multi-user.target.wants/afs-supervisor.service + ln -s ../afm-api-supervisor.service ${D}${systemd_system_unitdir}/multi-user.target.wants/afm-api-supervisor.service fi } |