2022-12-03 18:36:50 +03:00

13 lines
279 B
Bash
Executable File

#!/usr/bin/env bash
if [ -z "$DONOTUSEFIREJAIL" ]; then
exec firejail \
--quiet --noprofile \
--rlimit-cpu=5 \
--rlimit-as=250m \
--rlimit-fsize=250k \
"$@"
else
exec timeout -v -s KILL 5 "$@"
fi