feat(machine): add OS and kernel version information to machine info, show in 'machine ls'

This commit is contained in:
Pasha Sviderski
2026-06-24 17:57:20 +10:00
parent 9ea30e6ee9
commit ad43569fe5
8 changed files with 574 additions and 230 deletions
+8
View File
@@ -0,0 +1,8 @@
//go:build !linux
package osinfo
// KernelVersion returns an empty string on non-Linux hosts where the machine daemon does not run.
func KernelVersion() string {
return ""
}