diff options
| author | Jörg Thalheim <Mic92@users.noreply.github.com> | 2021-07-30 10:40:02 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-30 10:40:02 +0100 |
| commit | 528a5c442093646e1b85178a182db9b8542760a6 (patch) | |
| tree | 78e04acbb943053b356735a23fea9ee0bbd6453f | |
| parent | Merge pull request #131588 from NixOS/staging-next-21.05 (diff) | |
| parent | nixos/bird: fix bird/bird6 description (diff) | |
| download | nixpkgs-528a5c442093646e1b85178a182db9b8542760a6.tar.gz | |
Merge pull request #132028 from NixOS/backport-132011-to-release-21.05
[Backport release-21.05] nixos/bird: fix bird/bird6 description
| -rw-r--r-- | nixos/modules/services/networking/bird.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/services/networking/bird.nix b/nixos/modules/services/networking/bird.nix index 1923afdf83f2..c14adbda3c5a 100644 --- a/nixos/modules/services/networking/bird.nix +++ b/nixos/modules/services/networking/bird.nix @@ -10,8 +10,8 @@ let birdBin = if variant == "bird6" then "bird6" else "bird"; birdc = if variant == "bird6" then "birdc6" else "birdc"; descr = - { bird = "1.9.x with IPv4 suport"; - bird6 = "1.9.x with IPv6 suport"; + { bird = "1.6.x with IPv4 support"; + bird6 = "1.6.x with IPv6 support"; bird2 = "2.x"; }.${variant}; in { |
