aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2021-11-06 10:35:42 -0300
committerSilvio Rhatto <rhatto@riseup.net>2021-11-06 10:35:42 -0300
commite9f335932508fb985d2a071dfb62dea2a5518cfb (patch)
tree118655f336a3afc501c0cbcac9ca97eb076cdf3c
parent8c5b6a9817ae053ac9d2313fd000ae7bc1c0bd02 (diff)
downloadpuppet-nodo-e9f335932508fb985d2a071dfb62dea2a5518cfb.tar.gz
puppet-nodo-e9f335932508fb985d2a071dfb62dea2a5518cfb.tar.bz2
Remove pidgin-openpgp
-rw-r--r--manifests/utils/network/xmpp.pp7
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,
+ }
}