summary refs log tree commit diff
path: root/nixos/modules/services/misc
diff options
context:
space:
mode:
authorJaka Hudoklin <jakahudoklin@gmail.com>2014-11-23 12:16:50 +0100
committerJaka Hudoklin <jakahudoklin@gmail.com>2014-11-23 12:16:50 +0100
commit4f592d4f29a06a553858bf50d64deda6752168e5 (patch)
tree11f75c51d050a38b8ab784d953c72079ae93546c /nixos/modules/services/misc
parentd1493bc1eecf4b0240781ea13bda2a01838f4dfb (diff)
downloadnixlib-4f592d4f29a06a553858bf50d64deda6752168e5.tar
nixlib-4f592d4f29a06a553858bf50d64deda6752168e5.tar.gz
nixlib-4f592d4f29a06a553858bf50d64deda6752168e5.tar.bz2
nixlib-4f592d4f29a06a553858bf50d64deda6752168e5.tar.lz
nixlib-4f592d4f29a06a553858bf50d64deda6752168e5.tar.xz
nixlib-4f592d4f29a06a553858bf50d64deda6752168e5.tar.zst
nixlib-4f592d4f29a06a553858bf50d64deda6752168e5.zip
nixos/etcd: fix postStart check and make tests deterministic
Diffstat (limited to 'nixos/modules/services/misc')
-rw-r--r--nixos/modules/services/misc/etcd.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/nixos/modules/services/misc/etcd.nix b/nixos/modules/services/misc/etcd.nix
index 550d351ccfbe..284361a04d9e 100644
--- a/nixos/modules/services/misc/etcd.nix
+++ b/nixos/modules/services/misc/etcd.nix
@@ -46,7 +46,7 @@ in {
 
     initialCluster = mkOption {
       description = "Etcd initial cluster configuration for bootstrapping.";
-      default = ["${cfg.name}=http://localhost:2380" "${cfg.name}=http://localhost:7001"];
+      default = ["${cfg.name}=http://localhost:7001"];
       type = types.listOf types.str;
     };
 
@@ -123,7 +123,10 @@ in {
         if [ "$(id -u)" = 0 ]; then chown etcd ${cfg.dataDir}; fi
       '';
       postStart = ''
-        until ${pkgs.curl}/bin/curl -s -o /dev/null '${head cfg.listenClientUrls}/version'; do
+        until ${pkgs.etcdctl}/bin/etcdctl set /nixos/state 'up'; do
+          sleep 1;
+        done
+        until ${pkgs.etcdctl}/bin/etcdctl get /nixos/state | grep up; do
           sleep 1;
         done
       '';