diff options
| author | Jeff Carr <[email protected]> | 2025-03-12 13:16:05 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-03-12 13:17:19 -0500 |
| commit | 767380abd080682f2e13d8d41633c0f600b8f616 (patch) | |
| tree | 932fdffe21bce59c57580857135633b4ff7ef196 /main.go | |
| parent | bb4a6a01df71f7ce4338b8f61806ebf8832bffbf (diff) | |
the forgotten patchv0.0.47
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 12 |
1 files changed, 7 insertions, 5 deletions
@@ -39,15 +39,17 @@ func main() { me.hostname, _ = os.Hostname() me.pollDelay = 10 * time.Second me.machines = zoopb.NewMachines() - me.machines2 = zoopb.NewMachines() + // me.machines2 = zoopb.NewMachines() if err := me.machines.ConfigLoad(); err != nil { log.Warn("load config failed", err) os.Exit(-1) } - if err := me.machines2.ConfigLoad(); err != nil { - log.Warn("load config failed", err) - os.Exit(-1) - } + /* + if err := me.machines2.ConfigLoad(); err != nil { + log.Warn("load config failed", err) + os.Exit(-1) + } + */ // me.targets = make(map[string]string) // keep track of what versions the machines should be running me.upgrade = make(map[string]bool) // used to trigger upgrade attempts |
