dev/modules/sysconfig/manifests/packages.pp
author cavaliet
Thu, 13 Nov 2014 16:27:11 +0100
changeset 157 a3b764f393a0
parent 129 3a7a8607d395
permissions -rw-r--r--
Added tag V00.06.06 for changeset 60917da03414

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

  
}