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