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
No known key found for this signature in database
GPG key ID: 9DF5D4640AB888D5

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