Files
trivy/analyzer/os/const.go
Tomoya AMACHI 6a2ca8f74f check OS
2019-04-25 01:05:15 +09:00

44 lines
658 B
Go

package os
const (
// RedHat is done
RedHat = "redhat"
// Debian is done
Debian = "debian"
// Ubuntu is done
Ubuntu = "ubuntu"
// CentOS is done
CentOS = "centos"
// Fedora is done
Fedora = "fedora"
// Amazon is done
Amazon = "amazon"
// Oracle is done
Oracle = "oracle"
// FreeBSD currently doesn't support docker
// FreeBSD = "freebsd"
// Windows only run windows os
// TODO : support windows
Windows = "windows"
// OpenSUSE is done
OpenSUSE = "opensuse"
// OpenSUSELeap is
OpenSUSELeap = "opensuse.leap"
// OpenSUSETumbleweed is done
OpenSUSETumbleweed = "opensuse.tumbleweed"
// Alpine is done
Alpine = "alpine"
)