From 5d875ea7cc25909d959e345f3b2c4846aff9ed39 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Conil?= Date: Mon, 19 May 2014 16:00:05 +1000 Subject: [PATCH] Editing README to add additional dependancies on debian The erlang version provided in the official debian repository doesn't handle SSL ciphers used by puppet (when used as a CA) The more recent version offered by the erland repo (as set up by the erland module) alleviates this. --- README.md | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c67504455..1c91758df 100644 --- a/README.md +++ b/README.md @@ -317,8 +317,8 @@ The module has been tested on: Testing on other platforms has been light and cannot be guaranteed. -### RedHat module dependencies -To have a suitable erlang version installed on RedHat systems, +### Module dependencies +To have a suitable erlang version installed on RedHat and Debian systems, you have to install another puppet module from http://forge.puppetlabs.com/garethr/erlang with: puppet module install garethr-erlang @@ -326,9 +326,18 @@ you have to install another puppet module from http://forge.puppetlabs.com/garet This module handles the packages for erlang. To use the module, add the following snippet to your site.pp or an appropriate profile class: +For RedHat systems: + include 'erlang' class { 'erlang': epel_enable => true} +For Debian systems: + + include 'erlang' + package { 'erlang-base': + ensure => 'latest', + } + ##Development Puppet Labs modules on the Puppet Forge are open projects, and community