Puppet Class: scaleio::rpmkey
- Defined in:
- manifests/rpmkey.pp
Overview
Manage the ScaleIO RPM key
2 3 4 5 6 7 8 9 10 11 12 13 14 |
# File 'manifests/rpmkey.pp', line 2
class scaleio::rpmkey {
file {
'/etc/pki/rpm-gpg/RPM-GPG-KEY-ScaleIO' :
source => 'puppet:///modules/scaleio/RPM-GPG-KEY-ScaleIO',
owner => 'root',
group => '0',
mode => '0644',
} ~>
exec { 'scaleio::rpmkey::import' :
command => 'rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-ScaleIO',
refreshonly => true,
}
}
|