Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wcooley/puppet-rpm_gpgkey
Puppet defined type to install RPM GPG keys
https://github.com/wcooley/puppet-rpm_gpgkey
Last synced: 16 days ago
JSON representation
Puppet defined type to install RPM GPG keys
- Host: GitHub
- URL: https://github.com/wcooley/puppet-rpm_gpgkey
- Owner: wcooley
- License: apache-2.0
- Created: 2014-05-28T06:11:57.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2019-12-09T19:28:20.000Z (about 5 years ago)
- Last Synced: 2024-10-18T23:16:07.431Z (2 months ago)
- Language: Puppet
- Size: 191 KB
- Stars: 1
- Watchers: 2
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
rpm\_gpgkey
===========Purpose
-------This provides the defined type `rpm_gpgkey`, for installing GPG keys for RPM.
Unlike Yum, RHN/Spacewalk client does not automatically import GPG keys, so it
is necessary to do so outside of RHN client.Note that it does not currently manage the RPM GPG key file itself.
Example
-------$epel6key = '/etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6'
rpm_gpgkey { 'epel-6':
keyid => '0608b895',
path => $epel6key,
}file { $epel6key:
source => 'puppet:///xxx/RPM-GPG-KEY-EPEL-6',
}File[$epel6key] -> Rpm_gpgkey['epel-6']
License
-------See LICENSE.