diff mbox series

[meta-selinux] selinux-image.bbclass: use bbwarn for warning instead of echo

Message ID 20230706182904.3050012-1-ml@calgera.com
State New
Headers show
Series [meta-selinux] selinux-image.bbclass: use bbwarn for warning instead of echo | expand

Commit Message

Renato Caldas July 6, 2023, 6:29 p.m. UTC
From: Renato Caldas <renato@calgera.com>

This prevents the offline selinux relabeling from failing silently.

Signed-off-by: Renato Caldas <renato@calgera.com>
---
 classes/selinux-image.bbclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/classes/selinux-image.bbclass b/classes/selinux-image.bbclass
index 23645b7..51cfb57 100644
--- a/classes/selinux-image.bbclass
+++ b/classes/selinux-image.bbclass
@@ -2,7 +2,7 @@  selinux_set_labels () {
     POL_TYPE=$(sed -n -e "s&^SELINUXTYPE[[:space:]]*=[[:space:]]*\([0-9A-Za-z_]\+\)&\1&p" ${IMAGE_ROOTFS}/${sysconfdir}/selinux/config)
     if ! setfiles -m -r ${IMAGE_ROOTFS} ${IMAGE_ROOTFS}/${sysconfdir}/selinux/${POL_TYPE}/contexts/files/file_contexts ${IMAGE_ROOTFS}
     then
-        echo WARNING: Unable to set filesystem context, setfiles / restorecon must be run on the live image.
+        bbwarn "Unable to set filesystem context, setfiles / restorecon must be run on the live image."
         touch ${IMAGE_ROOTFS}/.autorelabel
         exit 0
     fi