diff options
author | Jan Luebbe <jlu@pengutronix.de> | 2020-03-27 13:12:52 +0100 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2020-04-07 11:49:54 -0700 |
commit | e45b54998c836cdd103d8fdd2eab4425ee040ee5 (patch) | |
tree | f991861bf0b2744ceff0d4572748c6f16f6ffec5 | |
parent | 98a6664408f17560549b94f575e058ed84dd6a0d (diff) | |
download | meta-security-e45b54998c836cdd103d8fdd2eab4425ee040ee5.tar.gz |
apparmor: fix wrong executable permission on service file
This avoids "systemd[1]: Configuration file
/lib/systemd/system/apparmor.service is marked executable. Please remove
executable permission bits. Proceeding anyway." on boot.
Signed-off-by: Jan Luebbe <jlu@pengutronix.de>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r-- | recipes-mac/AppArmor/apparmor_2.13.3.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-mac/AppArmor/apparmor_2.13.3.bb b/recipes-mac/AppArmor/apparmor_2.13.3.bb index 11c931d..604499d 100644 --- a/recipes-mac/AppArmor/apparmor_2.13.3.bb +++ b/recipes-mac/AppArmor/apparmor_2.13.3.bb | |||
@@ -120,7 +120,7 @@ do_install () { | |||
120 | 120 | ||
121 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then | 121 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then |
122 | install -d ${D}${systemd_system_unitdir} | 122 | install -d ${D}${systemd_system_unitdir} |
123 | install ${WORKDIR}/apparmor.service ${D}${systemd_system_unitdir} | 123 | install -m 0644 ${WORKDIR}/apparmor.service ${D}${systemd_system_unitdir} |
124 | fi | 124 | fi |
125 | } | 125 | } |
126 | 126 | ||