dev/modules/sysconfig/manifests/packages.pp
author Nicolas DURAND <nicolas.durand@iri.centrepompidou.fr>
Fri, 28 Nov 2014 17:32:22 +0100
changeset 7 b3c03d54e144
parent 0 54f4e0f9d636
child 12 8ca7be41e3ca
permissions -rw-r--r--
Make host configurable from config.py (see settings.py) + changed id generation (using slugified labels instead of GUIDs)

class sysconfig::packages {

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

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

  
}