dev/modules/sysconfig/manifests/packages.pp
author cavaliet
Wed, 10 Sep 2014 16:41:33 +0200
changeset 135 98822a0e9573
parent 129 3a7a8607d395
permissions -rw-r--r--
little commit

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

  
}