lol

Merge pull request #243004 from baloo/baloo/keepalived/vrrp-router-id

keepalived: fixup `virtualRouterId` documentation

authored by

Nick Cao and committed by
GitHub
d9dd68ef b32c7620

+2 -2
+2 -2
nixos/modules/services/networking/keepalived/vrrp-instance-options.nix
··· 22 22 }; 23 23 24 24 virtualRouterId = mkOption { 25 - type = types.int; 25 + type = types.ints.between 1 255; 26 26 description = lib.mdDoc '' 27 - Arbitrary unique number 0..255. Used to differentiate multiple instances 27 + Arbitrary unique number 1..255. Used to differentiate multiple instances 28 28 of vrrpd running on the same NIC (and hence same socket). 29 29 ''; 30 30 };