From f6b7ea94684cc531053e2951574e06d42a22acfb Mon Sep 17 00:00:00 2001 From: Sylvain Baubeau Date: Thu, 4 Nov 2021 14:22:39 +0100 Subject: [PATCH] Add support solus linux detection --- host/host_linux.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/host/host_linux.go b/host/host_linux.go index db58610db..d3bafa456 100644 --- a/host/host_linux.go +++ b/host/host_linux.go @@ -363,6 +363,8 @@ func PlatformInformation() (platform string, family string, version string, err family = "alpine" case "coreos": family = "coreos" + case "solus": + family = "solus" } return platform, family, version, nil