summaryrefslogtreecommitdiff
path: root/manifests/mail.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/mail.pp')
-rw-r--r--manifests/mail.pp11
1 files changed, 11 insertions, 0 deletions
diff --git a/manifests/mail.pp b/manifests/mail.pp
new file mode 100644
index 0000000..4afa0c7
--- /dev/null
+++ b/manifests/mail.pp
@@ -0,0 +1,11 @@
+class rubygems::mail {
+ require rubygems::devel
+ package{'mail':
+ ensure => present,
+ provider => gem,
+ }
+
+ if $rubyversion == '1.8.6' {
+ require rubygems::tlsmail
+ }
+}