blob: 1498e9408e54ebb8effba00a3520b941b888da84 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
 | class utils::security {
  # Security
  package { [ 'apg',           'gnupg-agent', 'makepasswd', 'pwgen', 'fpm2', 'encfs',
              'signing-party', 'libnss3-tools' ]:
    ensure => installed,
  }
  # Custom: might not be available in the official repositories
  if $nodo_use_custom_packages == true {
    package { [ 'kedpm' ]:
      ensure => installed,
    }
  }
}
 |