From 9f065284bbab9b37bcb0cccfb4f4e28ce9a83fe9 Mon Sep 17 00:00:00 2001 From: sharpenedblade Date: Wed, 17 Jan 2024 19:56:46 -0800 Subject: [PATCH] Disable selinux --- build.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.sh b/build.sh index 32b57be..e966bd9 100755 --- a/build.sh +++ b/build.sh @@ -10,6 +10,8 @@ function cleanup { } trap cleanup EXIT +setenforce 0 + for profile in "${profiles[@]}"; do profile_builddir="$builddir/$profile"; mkdir -p $profile_builddir; cd "$profile_builddir"