Fix deltarpm support for CentOS 8

timestamps
dump_stack() 2020-05-30 12:40:12 +00:00
padre bfae451749
commit bfc6f11a7e
Firmado por: dump_stack
ID de clave GPG: BE44DA8C062D87DC
Se han modificado 1 ficheros con 6 adiciones y 1 borrados

Ver fichero

@ -202,7 +202,12 @@ func generateBaseDockerImage(registry string, commands []config.DockerCommand,
d += "RUN sed -i 's;installonly_limit=;installonly_limit=100500;' /etc/yum.conf\n"
d += "RUN yum -y update\n"
d += "RUN yum -y groupinstall 'Development Tools'\n"
d += "RUN yum -y install deltarpm\n"
if sk.DistroRelease < "8" {
d += "RUN yum -y install deltarpm\n"
} else {
d += "RUN yum -y install drpm\n"
}
default:
err = fmt.Errorf("%s not yet supported", sk.DistroType.String())
return