From 56d1d87f1796f6fa7a5696e593b74ef7547d2403 Mon Sep 17 00:00:00 2001 From: thelamer Date: Tue, 13 Feb 2024 14:07:52 -0800 Subject: [PATCH] bugfix seccomp detect logic --- root/usr/bin/wrapped-chromium | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/root/usr/bin/wrapped-chromium b/root/usr/bin/wrapped-chromium index 84794d0..bf89d41 100755 --- a/root/usr/bin/wrapped-chromium +++ b/root/usr/bin/wrapped-chromium @@ -8,7 +8,7 @@ if ! pgrep chromium > /dev/null;then fi # Run normally on privved containers or modified un non priv -if grep -q 'Seccomp:\t0' /proc/1/status; then +if grep -q 'Seccomp:.0' /proc/1/status; then ${BIN} \ --ignore-gpu-blocklist \ --no-first-run \