dev/modules/sysconfig/manifests/packages.pp
author cavaliet
Thu, 13 Nov 2014 16:27:00 +0100
changeset 156 60917da03414
parent 129 3a7a8607d395
permissions -rw-r--r--
V00.06.06 update ldt

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

  
}