mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
15 lines
199 B
Go
15 lines
199 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/fleetdm/fleet/v4/orbit/pkg/lvm"
|
|
)
|
|
|
|
func main() {
|
|
disk, err := lvm.FindRootDisk()
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
fmt.Println("Root Partition:", disk)
|
|
}
|