summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/main.go b/main.go
index 2e2fa3a..8f23757 100644
--- a/main.go
+++ b/main.go
@@ -5,6 +5,7 @@ package main
import (
"embed"
"os"
+ "time"
"go.wit.com/dev/alexflint/arg"
"go.wit.com/log"
@@ -30,6 +31,9 @@ func main() {
readDropletFile("droplets")
readHypervisorFile("hypervisor")
+ // initialize the grid as unstable
+ me.unstable = time.Now()
+
log.Info("create cluser for", argv.Hosts)
for _, name := range argv.Hosts {
h := addHypervisor(name)