Changes of Revision 2
[-] | Changed | stresslinux-build-key.spec |
x 1
2 AutoReqProv: off 3 Summary: The public gpg key for rpm package signature verification 4 Version: 1.0 5 -Release: 3.18 6 +Release: 4 7 Source0: stresslinux-build-key.gpg 8 Source1: dumpsigs 9 BuildRoot: %{_tmppath}/%{name}-%{version}-build 10
11 PreReq: sh-utils gpg fileutils mktemp 12 13 %description 14 -This package contains the gpg key that is used to sign official SuSE 15 +This package contains the gpg key that is used to sign official stresslinux 16 rpm packages. It will be installed as a keyring in 17 /usr/lib/rpm/gnupg/pubring.gpg. Administrators who wish to add their 18 own keys to verify against should use the following commandline command 19
20 if [ ! -f %{pubring} ]; then 21 touch %{pubring} 22 fi 23 -echo -n "importing SuSE build key to rpm keyring... " 24 +echo -n "importing stresslinux build key to rpm keyring... " 25 TF=`mktemp /tmp/gpg.XXXXXX` 26 if [ -z "$TF" ]; then 27 echo "stresslinux-build-key::post: cannot make temporary file. Fatal error." 28
29 else 30 echo "importing the key from the file %{slring}" 31 echo "returned an error. This should not happen. It may not be possible" 32 - echo "to properly verify the authenticity of rpm packages from SuSE sources." 33 - echo "The keyring containing the SuSE rpm package signing key can be found" 34 - echo "in the root directory of the first CD (DVD) of your SuSE product." 35 + echo "to properly verify the authenticity of rpm packages from stresslinux sources." 36 + echo "The keyring containing the stresslinux rpm package signing key can be found" 37 + echo "in the root directory of the first CD (DVD) of your stresslinux product." 38 exit -1 39 fi 40 ### import stresslinux package build key to roots gpg keyring 41 |