summaryrefslogtreecommitdiff
path: root/manifests/gpgme.pp
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2013-03-04 15:37:26 +0100
committervarac <varacanero@zeromail.org>2013-03-04 15:37:26 +0100
commit736de323efa5f4771330679aa4aa6bf7e16be202 (patch)
treeae0e4bb75c927249cad1c8593aee5ae5caed03f6 /manifests/gpgme.pp
parentf0c9b1f3749898ec37c5eeeb62d78ad3e61089cb (diff)
added gpgme class, with debian support
Diffstat (limited to 'manifests/gpgme.pp')
-rw-r--r--manifests/gpgme.pp6
1 files changed, 6 insertions, 0 deletions
diff --git a/manifests/gpgme.pp b/manifests/gpgme.pp
new file mode 100644
index 0000000..66034bc
--- /dev/null
+++ b/manifests/gpgme.pp
@@ -0,0 +1,6 @@
+class gpg::gpgme {
+ case $::operatingsystem {
+ debian: { include gpg::gpgme::debian }
+ default: { include gpg::gpgme::base }
+ }
+}