confd service: change default etcd port 4001 -> 2379

New versions of etcd listen on 2379 by default.
This is also the official IANA assigned port.
This commit is contained in:
Pascal Bach
2016-09-28 23:35:54 +02:00
parent 9ebc98e53d
commit 7d6c02d45a
+1 -1
View File
@@ -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;
};