aboutsummaryrefslogtreecommitdiff
path: root/manifests/utils/network/xmpp.pp
blob: b527deb5ea271b09b1247b0b371cd4f3e1a3488f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
class nodo::utils::network::xmpp (
  $ensure = 'installed',
) {
  package { [
    'pidgin',
    'pidgin-encryption',
    'pidgin-otr',
    'pidgin-privacy-please',
    'pidgin-plugin-pack',
  ]:
    ensure => $ensure,
  }

  package { [
    'pidgin-openpgp',
  ]:
    ensure => absent,
  }
}