diff --git a/python/manifests/init.pp b/python/manifests/init.pp index 6191c63..47a29e3 100644 --- a/python/manifests/init.pp +++ b/python/manifests/init.pp @@ -22,6 +22,22 @@ class python { } +# Install m2crypto module for python. +# +class python::m2crypto { + + package { "m2crypto": + ensure => installed, + name => $::operatingsystem ? { + "debian" => "python-m2crypto", + "ubuntu" => "python-m2crypto", + default => "m2crypto", + } + } + +} + + # Install python software using setup.py. # # === Parameters diff --git a/wiki/manifests/init.pp b/wiki/manifests/init.pp index 913e9cc..7f5f19c 100644 --- a/wiki/manifests/init.pp +++ b/wiki/manifests/init.pp @@ -157,6 +157,7 @@ class wiki::collab { include igraph::python include graphviz::python include ldap::client::python + include python::m2crypto include apache::sslserver include apache::mod::authnz_ldap