We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af1ea64 commit 6b4cebeCopy full SHA for 6b4cebe
pkg/fanal/types/const.go
@@ -44,12 +44,16 @@ const (
44
)
45
46
// OSTypeAliases is a map of aliases for operating systems.
47
-// This is used to map the old family names to the new ones for backward compatibility.
48
var OSTypeAliases = map[OSType]OSType{
+ // This is used to map the old family names to the new ones for backward compatibility.
49
"opensuse.leap": OpenSUSELeap,
50
"opensuse.tumbleweed": OpenSUSETumbleweed,
51
"suse linux enterprise micro": SLEMicro,
52
"suse linux enterprise server": SLES,
53
+ // This is used to map OS names in EKS
54
+ "amazon linux": Amazon,
55
+ // This is used to map OS names in Kind
56
+ "debian gnu/linux": Debian,
57
}
58
59
// Programming language dependencies
0 commit comments