diff options
| author | Silvio Rhatto <rhatto@riseup.net> | 2021-11-06 10:35:42 -0300 | 
|---|---|---|
| committer | Silvio Rhatto <rhatto@riseup.net> | 2021-11-06 10:35:42 -0300 | 
| commit | e9f335932508fb985d2a071dfb62dea2a5518cfb (patch) | |
| tree | 118655f336a3afc501c0cbcac9ca97eb076cdf3c /manifests | |
| parent | 8c5b6a9817ae053ac9d2313fd000ae7bc1c0bd02 (diff) | |
| download | puppet-nodo-e9f335932508fb985d2a071dfb62dea2a5518cfb.tar.gz puppet-nodo-e9f335932508fb985d2a071dfb62dea2a5518cfb.tar.bz2  | |
Remove pidgin-openpgp
Diffstat (limited to 'manifests')
| -rw-r--r-- | manifests/utils/network/xmpp.pp | 7 | 
1 files changed, 6 insertions, 1 deletions
diff --git a/manifests/utils/network/xmpp.pp b/manifests/utils/network/xmpp.pp index 9870338..b527deb 100644 --- a/manifests/utils/network/xmpp.pp +++ b/manifests/utils/network/xmpp.pp @@ -4,11 +4,16 @@ class nodo::utils::network::xmpp (    package { [      'pidgin',      'pidgin-encryption', -    'pidgin-openpgp',      'pidgin-otr',      'pidgin-privacy-please',      'pidgin-plugin-pack',    ]:      ensure => $ensure,    } + +  package { [ +    'pidgin-openpgp', +  ]: +    ensure => absent, +  }  }  | 
