summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-12-05 12:37:47 -0600
committerJeff Carr <[email protected]>2024-12-05 12:37:47 -0600
commitd9be1a53fbc1b82478bbbe8279c40a5e2c2bd7b3 (patch)
treee7329128dabfe5a8c71cab4cdb57aa66fb37531c
parent37a3c9622788b9710d82b638f091a6a5fccfc474 (diff)
more commonality to config filesv0.0.18v0.0.17
-rw-r--r--apt.go2
-rw-r--r--config.go1
2 files changed, 1 insertions, 2 deletions
diff --git a/apt.go b/apt.go
index 020a3e2..782c148 100644
--- a/apt.go
+++ b/apt.go
@@ -30,8 +30,6 @@ func (me *Machine) initPackages() {
log.Info("added", new1.Name, "failed")
}
}
-
- log.Info(me.Hostname, "is", me.Distro, "with", me.Packages.Len(), "packages")
}
func (me *Machine) addNew(name string, version string) bool {
diff --git a/config.go b/config.go
index cf41cbe..9a149de 100644
--- a/config.go
+++ b/config.go
@@ -99,6 +99,7 @@ func (m *Machine) ConfigLoad() error {
m.Hostname = hostname
m.Distro = detectDistro()
m.initPackages()
+ log.Info("zoopb.ConfigLoad()", m.Hostname, "runs", m.Distro, "with", m.Packages.Len(), "packages")
return nil
}