feat(scan): Support RHEL8 (#813)

* feat(scan): Support RHEL8

* fix(scan): check if `dnf-uils` is installed
This commit is contained in:
Kota Kanbe
2019-06-14 12:28:16 +09:00
committed by GitHub
parent eb9f9680ec
commit 75fea79ac1
3 changed files with 27 additions and 6 deletions

View File

@@ -53,7 +53,13 @@ func (o *rhel) depsFastRoot() []string {
if o.getServerInfo().Mode.IsOffline() {
return []string{}
}
return []string{"yum-utils"}
// repoquery
majorVersion, _ := o.Distro.MajorVersion()
if majorVersion < 8 {
return []string{"yum-utils"}
}
return []string{"dnf-utils"}
}
func (o *rhel) depsDeep() []string {