equal
deleted
inserted
replaced
|
1 class sysconfig::packages { |
|
2 |
|
3 $coment_pkgs = [ |
|
4 'vim', |
|
5 'python-setuptools', |
|
6 'libpq-dev', |
|
7 'python-dev', |
|
8 'python-virtualenv', |
|
9 'libjpeg8-dev', |
|
10 'zlib1g-dev', |
|
11 'libtiff5-dev', |
|
12 'libfreetype6-dev', |
|
13 'liblcms2-dev', |
|
14 'libwebp-dev', |
|
15 'tcl-dev', |
|
16 'tk-dev', |
|
17 'python-magic', |
|
18 'mercurial', |
|
19 'libtidy-dev', |
|
20 'libyaml-dev', |
|
21 'git-core', |
|
22 'pandoc', |
|
23 'abiword', |
|
24 'libreoffice', |
|
25 'libreoffice-script-provider-python', |
|
26 'python-uno' |
|
27 ] |
|
28 |
|
29 package { $coment_pkgs: ensure => "installed" } |
|
30 |
|
31 #upgrade setuptools |
|
32 exec { '/usr/bin/easy_install --upgrade setuptools': require => Package[$coment_pkgs]} |
|
33 |
|
34 } |