From 9219f16f03a97b3df85bfd867c2af2faca56b01d Mon Sep 17 00:00:00 2001 From: Lomanic Date: Thu, 11 Jul 2019 22:18:40 +0200 Subject: [PATCH] [host][linux] Fix #340 return Solus OS as from the "solus" PlatformFamily in Info() --- host/host_linux.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/host/host_linux.go b/host/host_linux.go index d1c5f5d..02ff554 100644 --- a/host/host_linux.go +++ b/host/host_linux.go @@ -356,6 +356,8 @@ func PlatformInformationWithContext(ctx context.Context) (platform string, famil family = "alpine" case "coreos": family = "coreos" + case "solus": + family = "solus" } return platform, family, version, nil