blob: c3e68a30e8b902595aca96dfe79eaf22dec396e3 (
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', 'ssss', 'libgfshare-bin' ]:
ensure => installed,
}
# Custom: might not be available in the official repositories
if $nodo_use_custom_packages == true {
package { [ 'kedpm' ]:
ensure => installed,
}
}
}
|