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
commit 3a09a32b27
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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