Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Este PR tem como objetivo corrigir um erro identificado durante o processo de provisionamento do Vagrant. O erro estava relacionado à falha na verificação GPG durante a atualização do RPM da maquina "testing". Para resolver esse problema, foram implementadas as seguintes alterações:
foram realizadas as seguintes alterações adicionais:
- Alteração dos repositórios do CentOS 8 para o mirror Vault, descomentando a linha de
mirrorlist
e atualizando a URL parabaseurl
.sudo sed -i 's/^mirrorlist/#mirrorlist/g' /etc/yum.repos.d/CentOS-*
sudo sed -i 's|^#baseurl=http://mirror.centos.org|baseurl=http://vault.centos.org|g' /etc/yum.repos.d/CentOS-*
- Ajuste do repositório Epel-8, desabilitando a contagem de pacotes.
sudo sed -i 's/^countme=1/#&/' /etc/yum.repos.d/epel*.repo
- Limpeza do cache do repositório.
sudo dnf clean all
- Atualização do RPM.
sudo dnf update rpm -q -y
Também foi alterado a versão do módulo do ansible utilizado na maquina "automation";
- PIP_PACKAGES="ComplexHTTPServer ansible==4.10"