update bin wrapper to pass cli options

This commit is contained in:
thelamer 2023-03-31 16:57:13 -07:00
parent 61f238cf64
commit f5b729d9ff

View File

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