diff options
author | José Bollo <jose.bollo@iot.bzh> | 2019-09-05 10:44:30 +0200 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2019-09-05 21:31:26 +0000 |
commit | 30b65312f093d8b0f326ef4ec0eafb40ac260f7f (patch) | |
tree | c27b3cfe55810084f42516edcffad7e28eefd88d /meta-app-framework/recipes-core | |
parent | a1371bd94cf45d9e9adbd4886dd7a081b9c780e8 (diff) |
af-platform-setup: fix installation mode
The file systemd-udevd.service.d/udev-shared.conf was
installed with default rigths meaning rwxr-xr-x.
Systemd complains about it:
Configuration file /lib/systemd/system/systemd-udevd.service.d/udev-shared.conf
is marked executable. Please remove executable permission bits. Proceeding anyway.
This commit fix that issue.
Bug-AGL: SPEC-2798
Change-Id: I90a2b0f538416b5e8e6f8e1aaf552530150c8103
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'meta-app-framework/recipes-core')
-rw-r--r-- | meta-app-framework/recipes-core/af-platform-setup/af-platform-setup_1.0.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-app-framework/recipes-core/af-platform-setup/af-platform-setup_1.0.bb b/meta-app-framework/recipes-core/af-platform-setup/af-platform-setup_1.0.bb index 0963875d1..eb473cd14 100644 --- a/meta-app-framework/recipes-core/af-platform-setup/af-platform-setup_1.0.bb +++ b/meta-app-framework/recipes-core/af-platform-setup/af-platform-setup_1.0.bb @@ -10,7 +10,7 @@ S = "${WORKDIR}" do_install() { d=${D}${systemd_system_unitdir}/systemd-udevd.service.d install -d $d - install ${S}/udev-shared.conf $d + install -m 0644 ${S}/udev-shared.conf $d } FILES_${PN} = "${systemd_system_unitdir}" |