Fix identity string for RHEL8

This commit is contained in:
Cassandra Comar 2019-05-29 14:24:22 -04:00 committed by Justin SB
parent b9644b6f9b
commit a5cfb6c2c2
No known key found for this signature in database
GPG Key ID: 8DEC5C8217494E37
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ func FindDistribution(rootfs string) (Distribution, error) {
if strings.HasPrefix(line, "CentOS Linux release 7.") {
return DistributionCentos7, nil
}
if strings.HasPrefix(line, "Red Hat Enterprise Linux Server release 8.") {
if strings.HasPrefix(line, "Red Hat Enterprise Linux release 8.") {
return DistributionRhel8, nil
}
if strings.HasPrefix(line, "CentOS Linux release 8.") {