blob: c8c8086991bfcce77cfcda5d0b25098fac00fb15 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
class nodo::utils::latex (
$ensure = 'installed',
) {
# LaTeX
package { [
'texlive-latex-base',
'texlive-latex-recommended',
'texlive-latex-extra',
'texlive-fonts-extra',
'texlive-lang-portuguese',
'texlive-extra-utils',
'vim-latexsuite',
'pdftk',
#'pdfsam',
]:
ensure => $ensure,
}
# Old stuff
package { [
'pdfjam',
]:
ensure => absent,
}
}
|