added scripts

This commit is contained in:
Michael Trip 2023-05-31 16:18:07 +02:00
parent a7d719c547
commit cdd6efa501
4 changed files with 34 additions and 0 deletions

View file

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