Merge pull request #6881 from thomasjcf29/feature/selinux_check_properly

Only fail if selinux is in enforcing
This commit is contained in:
Eelco Dolstra
2022-08-08 14:03:37 +02:00
committed by GitHub

View File

@@ -640,7 +640,7 @@ place_channel_configuration() {
check_selinux() {
if command -v getenforce > /dev/null 2>&1; then
if ! [ "$(getenforce)" = "Disabled" ]; then
if [ "$(getenforce)" = "Enforcing" ]; then
failure <<EOF
Nix does not work with selinux enabled yet!
see https://github.com/NixOS/nix/issues/2374