summaryrefslogtreecommitdiffstats
path: root/nixos/tests/etcd-cluster.nix
diff options
context:
space:
mode:
authorvolth <volth@volth.com>2018-07-20 20:56:59 +0000
committervolth <volth@volth.com>2018-07-20 20:56:59 +0000
commit2e979e8ceb45c2c251ed189c28a736fec7539c15 (patch)
treefd52e30ca330b554dec73b71694f916308dda5de /nixos/tests/etcd-cluster.nix
parent1a6af9f88ec2405334a9fd6a977ccbcb53472305 (diff)
[bot] nixos/*: remove unused arguments in lambdas
Diffstat (limited to 'nixos/tests/etcd-cluster.nix')
-rw-r--r--nixos/tests/etcd-cluster.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/nixos/tests/etcd-cluster.nix b/nixos/tests/etcd-cluster.nix
index 3971997a9bf7..3c4de5950a79 100644
--- a/nixos/tests/etcd-cluster.nix
+++ b/nixos/tests/etcd-cluster.nix
@@ -102,7 +102,7 @@ in {
};
nodes = {
- node1 = { config, pkgs, nodes, ... }: {
+ node1 = { ... }: {
require = [nodeConfig];
services.etcd = {
initialCluster = ["node1=https://node1:2380" "node2=https://node2:2380"];
@@ -110,7 +110,7 @@ in {
};
};
- node2 = { config, pkgs, ... }: {
+ node2 = { ... }: {
require = [nodeConfig];
services.etcd = {
initialCluster = ["node1=https://node1:2380" "node2=https://node2:2380"];
@@ -118,7 +118,7 @@ in {
};
};
- node3 = { config, pkgs, ... }: {
+ node3 = { ... }: {
require = [nodeConfig];
services.etcd = {
initialCluster = ["node1=https://node1:2380" "node2=https://node2:2380" "node3=https://node3:2380"];