Public key for MailScanner-5.1.4-1.efa.3.rhel.noarch.rpm is not installed
Posted: 06 Dec 2019 02:11
I was previously running eFa4 RC3 and upgraded/switched to a stable eFa4 as follows;
viewtopic.php?f=8&t=3879
Recently eFa4 released new upgrades for MailScanner-5.1.4-1.efa.3.rhel.noarch.rpm and I attempted to install the new upgrade as I have done in the past, just simply by running sudo eFa-Configure ---> Select Option 13.
Well, it wasn't that straight forward this time as I encountered error as shown below;
Modify /etc/yum.repos.d/efa4.repo to include the "RPM-GPG-KEY-eFa-Project" as shown below;
Note: Some website suggests the dirty way around this is doing
I did not try this method and will not be able to comment on it.
I hope this help someone out there.
Code: Select all
sudo rm /etc/yum.repos.d/eFa4-testing.repo
sudo curl -L https://mirrors.efa-project.org/rpm/eFa4/eFa4.repo -o /etc/yum.repos.d/eFa4.repo
sudo yum update
Recently eFa4 released new upgrades for MailScanner-5.1.4-1.efa.3.rhel.noarch.rpm and I attempted to install the new upgrade as I have done in the past, just simply by running sudo eFa-Configure ---> Select Option 13.
Well, it wasn't that straight forward this time as I encountered error as shown below;
Here is what I did to resolve the issue.warning: /var/cache/yum/x86_64/7/eFa4/packages/MailScanner-5.1.4-1.efa.3.rhel.noarch.rpm: Header V4 RSA/SHA1 Signature, key ID 108ef6b6: NOKEY
Public key for MailScanner-5.1.4-1.efa.3.rhel.noarch.rpm is not installed
Code: Select all
cd /etc/pki/rpm-gpg
wget https://mirrors.efa-project.org/rpm/eFa4/RPM-GPG-KEY-eFa-Project
Now you should be able to successfully install eFa4 released updates.[eFa4]
name=eFa-Project
baseurl=https://dl.efa-project.org/rpm/eFa4/x86_64
mirrorlist=https://dl.efa-project.org/rpm/eFa4/mirrors-eFa
failovermethod=priority
enabled=1
repo_gpgcheck = 0
gpgcheck = 1
gpgkey = file:///etc/pki/rpm-gpg/RPM-GPG-KEY-eFa-Project
Note: Some website suggests the dirty way around this is doing
Code: Select all
$ yum install {package-name} --nogpgcheck
I hope this help someone out there.