mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
Merge pull request #43125 from grahamc/fix-network-lo-alias
networking: Fix timeout when `lo` has aliased IPs
This commit is contained in:
commit
a8978f9b93
@ -1053,7 +1053,7 @@ in
|
||||
};
|
||||
} // (listToAttrs (flip map interfaces (i:
|
||||
let
|
||||
deviceDependency = if config.boot.isContainer
|
||||
deviceDependency = if (config.boot.isContainer || i.name == "lo")
|
||||
then []
|
||||
else [ (subsystemDevice i.name) ];
|
||||
in
|
||||
|
Loading…
Reference in New Issue
Block a user