Check _NIX_TEST_NO_SANDBOX when setting _canUseSandbox.

This commit is contained in:
Ben Radford
2023-06-15 12:48:06 +01:00
parent b8e8dfc3e8
commit c1d39de1fb

View File

@@ -141,7 +141,7 @@ restartDaemon() {
startDaemon
}
if [[ $(uname) == Linux ]] && [[ -L /proc/self/ns/user ]] && unshare --user true; then
if [[ -z "${_NIX_TEST_NO_SANDBOX:-}" ]] && [[ $(uname) == Linux ]] && [[ -L /proc/self/ns/user ]] && unshare --user true; then
_canUseSandbox=1
fi