aboutsummaryrefslogtreecommitdiff
path: root/manifests/utils/security/base.pp
blob: 9eef9910602aefc58e4a43b489fe34fcb7c978e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
class nodo::utils::security::base (
  $ensure = 'installed',
) {
  package { [
    'keychain',
    'gnupg-curl',
    #'hopenpgp-tools',
  ]:
    ensure => $ensure,
  }
}