dev/modules/sysconfig/manifests/packages.pp
author durandn
Mon, 13 Apr 2015 17:33:32 +0200
changeset 97 fe8782a67fcf
parent 12 8ca7be41e3ca
permissions -rw-r--r--
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]}


}