cache optimisation : no more cache.clear() but 2 "keys sets" for each repository: one for the categories and one for the comments and discussion + corrected slight mistake in macro that messed up with sessions
class sysconfig::packages {
$catedit_pkgs = [
'python-dev',
'python-setuptools',
'libpq-dev',
'libjpeg8-dev',
'libxslt-dev',
'libxml2',
'mercurial',
'pylint'
]
package { $catedit_pkgs: ensure => "installed" }
#upgrade setuptools
exec { '/usr/bin/easy_install --upgrade setuptools': require => Package[$catedit_pkgs]}
}