Something weird during use of repository

General Discussion of atomic repo and development projects.

Ask for help here with anything else not covered by other forums.
LimeCommerce
New Forum User
New Forum User
Posts: 1
Joined: Sat Jun 02, 2012 7:05 pm
Location: United States

Something weird during use of repository

Unread post by LimeCommerce »

When running:

wget -O - http://www.atomicorp.com/installers/atomic |sh

yum install php-mcrypt

these warnings appeared, what are they?


warning: rpmts_HdrFromFdno: Header V3 DSA/SHA1 Signature, key ID 5ebd2744: NOKEY
Retrieving key from file:///etc/pki/rpm-gpg/RPM-GPG-KEY.art.txt
Importing GPG key 0x5EBD2744:
Userid : Atomic Rocket Turtle <admin@atomicrocketturtle.com>
Package: atomic-release-1.0-14.el6.art.noarch (installed)
From : /etc/pki/rpm-gpg/RPM-GPG-KEY.art.txt
Is this ok [y/N]: y
Running rpm_check_debug
Running Transaction Test
Transaction Test Succeeded
Running Transaction
Warning: RPMDB altered outside of yum.


Thanks
User avatar
mikeshinn
Atomicorp Staff - Site Admin
Atomicorp Staff - Site Admin
Posts: 4149
Joined: Thu Feb 07, 2008 7:49 pm
Location: Chantilly, VA

Re: Something weird during use of repository

Unread post by mikeshinn »

These are all normal messages from yum:
warning: rpmts_HdrFromFdno: Header V3 DSA/SHA1 Signature, key ID 5ebd2744: NOKEY
Means the package is signed, and you did not have the key installed to check the signature.
Retrieving key from file:///etc/pki/rpm-gpg/RPM-GPG-KEY.art.txt
Means yum is getting the key to check the signature on the package.
Importing GPG key 0x5EBD2744:
Means yum is importing the key.
Userid : Atomic Rocket Turtle <admin@atomicrocketturtle.com>
This is the userid on the key.
Package: atomic-release-1.0-14.el6.art.noarch (installed)
This is the package you are installing, that is signed with the key.
From : /etc/pki/rpm-gpg/RPM-GPG-KEY.art.txt
And this is the key thats been downloaded, and is being used to check the package that is signed with the key.
Is this ok [y/N]: y
Yum is asking if you want to carry out this action, and you said yes.
Running rpm_check_debug
Since you said yes, yum is now running any debug checks configured for it, by you and/or by your OS vendor.
Running Transaction Test
Yum is running a test on this transaction.
Transaction Test Succeeded
Yum is reporting the test succeeded.
Running Transaction
Now yum is running the transaction, which means its going to install the package.
Warning: RPMDB altered outside of yum.
Yum is reporting that something else altered the rpm database on the system other than yum, such as running the command rpm from the command line or other tools that may not use yum.
Post Reply