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