summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkwadronaut <kwadronaut@leap.se>2016-07-25 00:32:38 +0200
committerkwadronaut <kwadronaut@leap.se>2016-07-25 00:32:38 +0200
commit673aa89e3726aa9bf915d5bbf8713710c804f6ac (patch)
tree08dac6738b17832c6c0cc5cf9d0752b67b6963c8
parent510a3693eab5dc78ed27d3728ee4d3b12334ea12 (diff)
from jessie on, use ruby-gpgme not libgpgme-ruby (closes #8270)
-rw-r--r--manifests/gpgme.pp7
1 files changed, 6 insertions, 1 deletions
diff --git a/manifests/gpgme.pp b/manifests/gpgme.pp
index e9b04a9..483fdc9 100644
--- a/manifests/gpgme.pp
+++ b/manifests/gpgme.pp
@@ -8,12 +8,17 @@ class rubygems::gpgme{
$provider = 'gem'
$packagename = 'ruby-gpgme'
}
- default: {
+ 'wheezy': {
# don't need to install gpgme as gem, debian package works
# fine with the gpg module
$provider = 'apt'
$packagename = 'libgpgme-ruby'
}
+ default: {
+ # from jessie on this package
+ $provider = 'apt'
+ $packagename = 'ruby-gpgme'
+ }
}
}
default: {