summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMing Liu <liu.ming50@gmail.com>2021-02-20 13:18:16 +0100
committerArmin Kuster <akuster808@gmail.com>2021-03-04 13:09:03 -0800
commit6608a190154af1140ea32e6da39935552a5ae7d8 (patch)
tree1f2f3e7095209ab17c7f6a38fc5f6b42ef149622
parente25975dcb90075ca67d30758c72b57d270ed3f6f (diff)
downloadmeta-security-6608a190154af1140ea32e6da39935552a5ae7d8.tar.gz
initramfs-framework-ima: fix a wrong path
/etc/ima-policy > /etc/ima/ima-policy. Signed-off-by: Ming Liu <liu.ming50@gmail.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r--meta-integrity/recipes-core/initrdscripts/initramfs-framework-ima/ima2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-integrity/recipes-core/initrdscripts/initramfs-framework-ima/ima b/meta-integrity/recipes-core/initrdscripts/initramfs-framework-ima/ima
index 8616f99..16ed53f 100644
--- a/meta-integrity/recipes-core/initrdscripts/initramfs-framework-ima/ima
+++ b/meta-integrity/recipes-core/initrdscripts/initramfs-framework-ima/ima
@@ -46,7 +46,7 @@ ima_run() {
46 # ("[Linux-ima-user] IMA policy loading via cat") and we get better error reporting when 46 # ("[Linux-ima-user] IMA policy loading via cat") and we get better error reporting when
47 # checking the write of each line. To minimize the risk of policy loading going wrong we 47 # checking the write of each line. To minimize the risk of policy loading going wrong we
48 # also remove comments and blank lines ourselves. 48 # also remove comments and blank lines ourselves.
49 if ! (set -e; while read i; do if echo "$i" | grep -q -e '^#' -e '^ *$'; then debug "Skipping IMA policy: $i"; else debug "Writing IMA policy: $i"; if echo $i; then sleep ${bootparam_ima_delay:-0}; else fatal "Invalid line in IMA policy: $i"; exit 1; fi; fi; done) </etc/ima-policy >/sys/kernel/security/ima/policy; then 49 if ! (set -e; while read i; do if echo "$i" | grep -q -e '^#' -e '^ *$'; then debug "Skipping IMA policy: $i"; else debug "Writing IMA policy: $i"; if echo $i; then sleep ${bootparam_ima_delay:-0}; else fatal "Invalid line in IMA policy: $i"; exit 1; fi; fi; done) </etc/ima/ima-policy >/sys/kernel/security/ima/policy; then
50 fatal "Could not load IMA policy." 50 fatal "Could not load IMA policy."
51 fi 51 fi
52} 52}