Documentation
¶
Index ¶
- Constants
- Variables
- type Distro
- type OsDetector
- func (osd *OsDetector) GetDebianDistro() (*Distro, error)
- func (osd *OsDetector) GetLinuxDistro() (*Distro, error)
- func (osd *OsDetector) GetOSDistro(os string) (*Distro, error)
- func (osd *OsDetector) GetOSFromOSRelease() (*Distro, error)
- func (osd *OsDetector) GetRedHatDistro() (*Distro, error)
- func (osd *OsDetector) GetSuSeDistro() (*Distro, error)
- func (osd *OsDetector) GetWindowsDistro() (*Distro, error)
Constants ¶
View Source
const ( UnknownDistr = "unknown" UnknownRev = "unknown" )
View Source
const ( OsBasedOnRedHat = "RedHat" OsBasedOnSuSe = "SuSe" OsBasedOnMandrake = "Mandrake" OsBasedOnDebian = "Debian" OsBasedOnContainerOS = "ContainerOS" )
View Source
const (
OsNameLinux = "Linux"
)
Variables ¶
View Source
var ( REOSRedHatDist = regexp.MustCompile(`(.*) release.*`) REOSRedHatPseudoName = regexp.MustCompile(`\((.*)\)$`) REOSRedHatRev = regexp.MustCompile(`(?U).* release (.*)( \(.*\))?$`) REOSSuSePseudoName = regexp.MustCompile(`CODENAME = (.*)(\n|\z)`) REOSSuSeRev = regexp.MustCompile(`VERSION = (.*)(\n|\z)`) REOSDebianOldDist = regexp.MustCompile(`DISTRIB_ID=(.*)(\n|\z)`) REOSDebianOldRev = regexp.MustCompile(`DISTRIB_RELEASE=(.*)(\n|\z)`) REOSDebianOldPseudoName = regexp.MustCompile(`DISTRIB_CODENAME=(.*)(\n|\z)`) REOSDebianRev = regexp.MustCompile(`^PRETTY_NAME="Debian GNU/Linux (\d+) \((.*)\)"$`) )
Functions ¶
This section is empty.
Types ¶
type OsDetector ¶
type OsDetector struct {
// contains filtered or unexported fields
}
func NewOsDetector ¶
func NewOsDetector(fs afero.Fs) *OsDetector
func (*OsDetector) GetDebianDistro ¶
func (osd *OsDetector) GetDebianDistro() (*Distro, error)
func (*OsDetector) GetLinuxDistro ¶
func (osd *OsDetector) GetLinuxDistro() (*Distro, error)
func (*OsDetector) GetOSDistro ¶
func (osd *OsDetector) GetOSDistro(os string) (*Distro, error)
func (*OsDetector) GetOSFromOSRelease ¶ added in v1.1.0
func (osd *OsDetector) GetOSFromOSRelease() (*Distro, error)
func (*OsDetector) GetRedHatDistro ¶
func (osd *OsDetector) GetRedHatDistro() (*Distro, error)
func (*OsDetector) GetSuSeDistro ¶
func (osd *OsDetector) GetSuSeDistro() (*Distro, error)
func (*OsDetector) GetWindowsDistro ¶ added in v1.1.0
func (osd *OsDetector) GetWindowsDistro() (*Distro, error)
Click to show internal directories.
Click to hide internal directories.