zookeeper/structs.go

25 lines
788 B
Go
Raw Normal View History

2024-11-15 18:49:52 -06:00
package main
import (
"time"
2025-02-15 03:45:32 -06:00
"go.wit.com/gui"
2024-11-15 18:49:52 -06:00
"go.wit.com/lib/protobuf/zoopb"
)
var me *stuff
// this app's variables
type stuff struct {
hostname string // my fqdn dns zookeeper hostname
pollDelay time.Duration // how often to report our status
dog *time.Ticker // the watchdog timer
dogchan chan bool // can kill the watchdog
distro string // debian,redhat,gentoo,macos,wincrap
packages *zoopb.Packages // installed packages and versions
machines *zoopb.Machines // every machine that has reported itself to the zookeeper
2025-01-18 15:48:34 -06:00
targets map[string]string // what versions the machines should be running
upgrade map[string]bool // use this to trigger builds
2025-02-15 03:45:32 -06:00
myGui *gui.Node // the gui toolkit handle
2024-11-15 18:49:52 -06:00
}