dev/modules/sysconfig/manifests/packages.pp
author Nicolas DURAND <nicolas.durand@iri.centrepompidou.fr>
Fri, 12 Sep 2014 15:28:17 +0200
changeset 136 66972b143124
parent 129 3a7a8607d395
permissions -rw-r--r--
Fixes to puppet provisioning, Puppet_Readme.md added, custom.yaml removed from tracking (error)

class sysconfig::packages {

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

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

  
}