mirror of
https://github.com/aquasecurity/trivy.git
synced 2025-12-22 15:16:33 -08:00
44 lines
658 B
Go
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"
|
|
)
|