dev/modules/sysconfig/manifests/packages.pp
author Nicolas DURAND <nicolas.durand@iri.centrepompidou.fr>
Mon, 24 Nov 2014 11:05:08 +0100
changeset 2 f7bc7942969a
parent 0 54f4e0f9d636
child 12 8ca7be41e3ca
permissions -rw-r--r--
removed log folder from repo + changed property edition form + started refactoring property list so adding a new property is easier

class sysconfig::packages {

  $catedit_pkgs = [
      'python-dev',
      'python-setuptools',
      'libpq-dev',
      'libjpeg8-dev',
      'libxslt-dev',
      'libxml2',
      'mercurial'
  ]
  
  package { $catedit_pkgs: ensure => "installed" }

  #upgrade setuptools
  exec { '/usr/bin/easy_install --upgrade setuptools': require => Package[$catedit_pkgs]}

  
}