update bin wrapper to pass cli options

This commit is contained in:
thelamer 2023-03-31 16:54:54 -07:00
parent cb87b19d43
commit c789188a62

View File

@ -4,7 +4,7 @@ BIN=/usr/bin/chromium-real
# Run normally on privved containers or modified un non priv # Run normally on privved containers or modified un non priv
if grep -q 'Seccomp: 0' /proc/1/status; then if grep -q 'Seccomp: 0' /proc/1/status; then
${BIN} --password-store=basic ${BIN} --password-store=basic "$@"
else else
${BIN} --password-store=basic --no-sandbox --test-type ${BIN} --password-store=basic --no-sandbox --test-type "$@"
fi fi