aboutsummaryrefslogtreecommitdiff
path: root/manifests/utils/security/stego.pp
blob: b5fc27d6a109f56396884253d397aeb07e571065 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class nodo::utils::security::stego (
  $ensure = 'installed',
) {
  package { [
    'snow',
    'stegsnow',
    'steghide',
    'snowdrop',
    'python-stepic',
  ]:
    ensure => $ensure,
  }
}