From ccbf6cf5bf7e6c38887391e003f89f3deb16cd83 Mon Sep 17 00:00:00 2001 From: Ryan Kuba Date: Thu, 18 Jan 2024 11:31:59 -0800 Subject: [PATCH] update chromium wrapper (#209) --- root/usr/bin/chromium | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/root/usr/bin/chromium b/root/usr/bin/chromium index 5887b478..8faca0a9 100755 --- a/root/usr/bin/chromium +++ b/root/usr/bin/chromium @@ -2,8 +2,13 @@ BIN=/usr/bin/chromium-real +# Cleanup +if ! pgrep chromium > /dev/null;then + rm -f $HOME/.config/chromium/Singleton* +fi + # Run normally on privved containers or modified un non priv -if grep -q 'Seccomp: 0' /proc/1/status; then +if grep -q 'Seccomp:\t0' /proc/1/status; then ${BIN} --password-store=basic "$@" else ${BIN} --password-store=basic --no-sandbox --test-type "$@"