diff -r 59cddf254ebd -r a1aa29e7809f dev/modules/sysconfig/manifests/packages.pp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/dev/modules/sysconfig/manifests/packages.pp Thu Feb 27 23:19:13 2014 +0100 @@ -0,0 +1,34 @@ +class sysconfig::packages { + + $coment_pkgs = [ + 'vim', + 'python-setuptools', + 'libpq-dev', + 'python-dev', + 'python-virtualenv', + 'libjpeg8-dev', + 'zlib1g-dev', + 'libtiff5-dev', + 'libfreetype6-dev', + 'liblcms2-dev', + 'libwebp-dev', + 'tcl-dev', + 'tk-dev', + 'python-magic', + 'mercurial', + 'libtidy-dev', + 'libyaml-dev', + 'git-core', + 'pandoc', + 'abiword', + 'libreoffice', + 'libreoffice-script-provider-python', + 'python-uno' + ] + + package { $coment_pkgs: ensure => "installed" } + + #upgrade setuptools + exec { '/usr/bin/easy_install --upgrade setuptools': require => Package[$coment_pkgs]} + +}