dev/modules/sysconfig/manifests/packages.pp
author Nicolas DURAND <nicolas.durand@iri.centrepompidou.fr>
Mon, 02 Mar 2015 14:39:22 +0100
changeset 47 ddba4624d661
parent 12 8ca7be41e3ca
permissions -rw-r--r--
Added cache support for getting issues, commits and comments + reworked workshop page, now displaying latest changes and latest opened issues and links to changeset and issues list + changeset page now displays a change summary

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]}


}