summary refs log tree commit diff
diff options
context:
space:
mode:
authorJoachim F <joachifm@users.noreply.github.com>2016-09-29 14:59:51 +0200
committerGitHub <noreply@github.com>2016-09-29 14:59:51 +0200
commite2c7f7135d0c5a2611bb2899823e92f2f33a03b1 (patch)
tree201a22afe050a90b151fd40487fef6bd363733f9
parentfdada558c009976f08b1462a77c3a304dd3539dc (diff)
parent7d6c02d45aa4320ab51342584bf27408012434fa (diff)
downloadnixlib-e2c7f7135d0c5a2611bb2899823e92f2f33a03b1.tar
nixlib-e2c7f7135d0c5a2611bb2899823e92f2f33a03b1.tar.gz
nixlib-e2c7f7135d0c5a2611bb2899823e92f2f33a03b1.tar.bz2
nixlib-e2c7f7135d0c5a2611bb2899823e92f2f33a03b1.tar.lz
nixlib-e2c7f7135d0c5a2611bb2899823e92f2f33a03b1.tar.xz
nixlib-e2c7f7135d0c5a2611bb2899823e92f2f33a03b1.tar.zst
nixlib-e2c7f7135d0c5a2611bb2899823e92f2f33a03b1.zip
Merge pull request #19060 from bachp/confd-etcd-port
confd service: change default etcd port 4001 -> 2379
-rwxr-xr-x[-rw-r--r--]nixos/modules/services/misc/confd.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/misc/confd.nix b/nixos/modules/services/misc/confd.nix
index 72ec68dee6b3..fe13013286b8 100644..100755
--- a/nixos/modules/services/misc/confd.nix
+++ b/nixos/modules/services/misc/confd.nix
@@ -33,7 +33,7 @@ in {
 
     nodes = mkOption {
       description = "Confd list of nodes to connect to.";
-      default = [ "http://127.0.0.1:4001" ];
+      default = [ "http://127.0.0.1:2379" ];
       type = types.listOf types.str;
     };