diff options
| author | Jeff Carr <[email protected]> | 2025-10-09 21:49:00 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-09 21:49:00 -0500 |
| commit | 6b7c94c5028be155032f79c1a51ce36db6efed0a (patch) | |
| tree | 942112947b53c2d91eb92ac819aac768dc20d323 /watchdog.go | |
| parent | 3f5a24dc8c0ac4ef22e994cef0a9aabffa57bf82 (diff) | |
Diffstat (limited to 'watchdog.go')
| -rw-r--r-- | watchdog.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/watchdog.go b/watchdog.go index cb3359d..fbbe6da 100644 --- a/watchdog.go +++ b/watchdog.go @@ -48,7 +48,7 @@ func NewWatchdog() { for loop.Scan() { m := loop.Next() counter += 1 - zood := m.Packages.FindByPackage("zood") + zood, _ := m.Packages.FindByPackageName("zood") if zood == nil { log.Info("machine", m.Hostname, "does not have zood installed") } else { |
