blob: 1e4049e743061ef2ebc5753e76ba8226566cdf7a (
plain)
1
2
3
4
5
6
7
8
9
|
# work around for poor key import UI in PackageKit
rm -f /var/lib/rpm/__db*
rpm --rebuilddb
if [ -f /etc/pki/rpm-gpg/RPM-GPG-KEY-adobe-linux ]; then
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-adobe-linux
fi
if [ -f /etc/pki/rpm-gpg/RPM-GPG-KEY-meego ]; then
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-meego
fi
|