diff options
author | Chris St. Pierre <chris.a.st.pierre@gmail.com> | 2011-04-14 11:21:05 -0400 |
---|---|---|
committer | Chris St. Pierre <chris.a.st.pierre@gmail.com> | 2011-04-14 11:21:05 -0400 |
commit | ad4d3a1813e0a5ccc3ea62ae576290c7d145ce26 (patch) | |
tree | 33ea183b2179b09d0842e2d9745d6b81044d2a0c /doc/appendix/guides/fedora.txt | |
parent | 6e7ba79340635aba26ee7f1980ce91714b853188 (diff) | |
parent | 232476219e69afc14647892250bba08a3118a7e7 (diff) | |
download | bcfg2-ad4d3a1813e0a5ccc3ea62ae576290c7d145ce26.tar.gz bcfg2-ad4d3a1813e0a5ccc3ea62ae576290c7d145ce26.tar.bz2 bcfg2-ad4d3a1813e0a5ccc3ea62ae576290c7d145ce26.zip |
Merge branch 'master' of https://github.com/solj/bcfg2
Diffstat (limited to 'doc/appendix/guides/fedora.txt')
-rw-r--r-- | doc/appendix/guides/fedora.txt | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/doc/appendix/guides/fedora.txt b/doc/appendix/guides/fedora.txt index 4e3244eaa..12432b04f 100644 --- a/doc/appendix/guides/fedora.txt +++ b/doc/appendix/guides/fedora.txt @@ -339,7 +339,7 @@ Bundle now looks like this .. code-block:: xml <Bundle name='base-packages'> - <BoundPackage name="gpg-pubkey" type="rpm"> + <BoundPackage name="gpg-pubkey" type="rpm" version="foo"> <Instance simplefile="/etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5" version="e8562897" release="459f07a4"/> <Instance simplefile="/etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL" version="217521f6" release="45e8a532"/> </BoundPackage> @@ -360,6 +360,10 @@ Bundle now looks like this <Package name='yum'/> </Bundle> +.. note:: + + version="foo" is just a dummy attribute for the gpg-pubkey Package + To actually push the gpg keys out via Bcfg2, you will need to manage the files as well. This can be done by adding Path entries for each of the gpg keys you want to manage @@ -369,7 +373,7 @@ of the gpg keys you want to manage <Bundle name='base-packages'> <Path name='/etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5'/> <Path name='/etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL'/> - <BoundPackage name="gpg-pubkey" type="rpm"> + <BoundPackage name="gpg-pubkey" type="rpm" version="foo"> <Instance simplefile="/etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5" version="e8562897" release="459f07a4"/> <Instance simplefile="/etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL" version="217521f6" release="45e8a532"/> </BoundPackage> |