dev/modules/sysconfig/manifests/packages.pp
author durandn
Tue, 14 Apr 2015 13:01:25 +0200
changeset 99 a55054e72fe4
parent 12 8ca7be41e3ca
permissions -rw-r--r--
Reworking cache keys registries and access

class sysconfig::packages {

  $catedit_pkgs = [
      'python-dev',
      'python-setuptools',
      'libpq-dev',
      'libjpeg8-dev',
      'libxslt-dev',
      'libxml2',
      'mercurial',
      'pylint'
  ]

  package { $catedit_pkgs: ensure => "installed" }

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


}