diff options
author | José Bollo <jose.bollo@iot.bzh> | 2017-03-08 13:15:58 +0100 |
---|---|---|
committer | José Bollo <jose.bollo@iot.bzh> | 2017-03-08 18:54:12 +0100 |
commit | e159294ecd366d2b7c67e5a610f5e7f55381e908 (patch) | |
tree | 76500c157bdaddc3b051c4f3eebe70b372810e6a /meta-app-framework/recipes-core/af-main | |
parent | d19db324a31e8baa57043ac9135c505a7393a01c (diff) |
Removes systemd warnings
Systemd was complaining that the service files were
executable. This patch removes that issue.
Change-Id: I77183bb142956fec84b3ca727f7084e8f652c292
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'meta-app-framework/recipes-core/af-main')
-rw-r--r-- | meta-app-framework/recipes-core/af-main/af-main_1.0.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-app-framework/recipes-core/af-main/af-main_1.0.bb b/meta-app-framework/recipes-core/af-main/af-main_1.0.bb index 6a1d36a..e229cd2 100644 --- a/meta-app-framework/recipes-core/af-main/af-main_1.0.bb +++ b/meta-app-framework/recipes-core/af-main/af-main_1.0.bb @@ -76,7 +76,7 @@ do_install_append() { mkdir -p ${D}${sysconfdir}/systemd/user/default.target.wants mkdir -p ${D}${sysconfdir}/systemd/system/default.target.wants ln -sf ${systemd_user_unitdir}/afm-user-daemon.service ${D}${sysconfdir}/systemd/user/default.target.wants - install -p -D ${WORKDIR}/init-afm-dirs.service ${D}${systemd_unitdir}/system/init-afm-dirs.service + install -m 644 -p -D ${WORKDIR}/init-afm-dirs.service ${D}${systemd_unitdir}/system/init-afm-dirs.service ln -sf ${systemd_unitdir}/system/init-afm-dirs.service ${D}${sysconfdir}/systemd/system/default.target.wants fi install -m 0755 ${WORKDIR}/afm-install ${D}${bindir} |