summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-10-22 19:34:50 -0500
committerJeff Carr <[email protected]>2024-10-22 19:34:50 -0500
commit525362fcc772f8edfa5fe3aada91fc7fe17c8030 (patch)
tree05e3d228a4c34706addfe15bd25c0231c73430f5 /main.go
parent448f4a0649d99c3d04096a6488193545751955ec (diff)
deprecate hypervisor file. yay!
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'main.go')
-rw-r--r--main.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/main.go b/main.go
index cf0bdbb..b7cf954 100644
--- a/main.go
+++ b/main.go
@@ -30,12 +30,13 @@ func main() {
}
readConfigFile()
- readHypervisorFile("hypervisor")
+ // readHypervisorFile("hypervisor")
writeConfigFile()
// initialize the grid as unstable
me.unstable = time.Now()
+ /*
log.Info("command line hypervisors:", argv.Hosts)
for _, name := range argv.Hosts {
h := findHypervisor(name)
@@ -46,6 +47,7 @@ func main() {
h = addHypervisor(name)
h.pb.Active = true
}
+ */
if argv.Start != "" {
d := findDroplet(argv.Start)