Puppet Class: gpg
- Defined in:
- manifests/init.pp
Overview
Class: gpg
Full description of class gpg here.
Parameters
- sample_parameter
-
Explanation of what this parameter affects and what it defaults to.
10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
# File 'manifests/init.pp', line 10
class gpg (
) {
package { 'gnupg-halyard':
require => Homebrew::Tap['halyard/formulae']
}
package { 'gpgtools-halyard':
provider => 'brewcask',
require => Homebrew::Tap['halyard/casks']
}
file { '/usr/local/bin/gpg':
ensure => 'absent',
require => Package['gpgtools-halyard']
}
}
|