mirror of
https://github.com/NixOS/nix.git
synced 2024-11-25 08:12:29 +00:00
Only fail if selinux is in enforcing
This commit is contained in:
parent
6776e65fd9
commit
96b4339d86
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user