diff --git a/changes/10456-add-more-distros-to-hostlinuxoss b/changes/10456-add-more-distros-to-hostlinuxoss new file mode 100644 index 0000000000..35bb28ae96 --- /dev/null +++ b/changes/10456-add-more-distros-to-hostlinuxoss @@ -0,0 +1 @@ +* Added EndeavourOS, Manjaro, openSUSE Leap and Tumbleweed to HostLinuxOSs. \ No newline at end of file diff --git a/server/fleet/hosts.go b/server/fleet/hosts.go index 903dc4d459..ea9041230c 100644 --- a/server/fleet/hosts.go +++ b/server/fleet/hosts.go @@ -513,7 +513,7 @@ func (h *Host) FleetPlatform() string { // HostLinuxOSs are the possible linux values for Host.Platform. var HostLinuxOSs = []string{ - "linux", "ubuntu", "debian", "rhel", "centos", "sles", "kali", "gentoo", "amzn", "pop", "arch", "linuxmint", "void", "nixos", + "linux", "ubuntu", "debian", "rhel", "centos", "sles", "kali", "gentoo", "amzn", "pop", "arch", "linuxmint", "void", "nixos", "endeavouros", "manjaro", "opensuse-leap", "opensuse-tumbleweed", } func IsLinux(hostPlatform string) bool {