Commit 61e272dab2fa6499b34b1367257bd4cdccbc520e
1 parent
125c5e72
Exists in
master
and in
39 other branches
Adding Pillow requirements
Showing
1 changed file
with
12 additions
and
0 deletions
Show diff stats
puppet/modules/colab/manifests/requirements.pp
... | ... | @@ -93,4 +93,16 @@ class colab::requirements { |
93 | 93 | ensure => installed, |
94 | 94 | } |
95 | 95 | |
96 | + package { 'libjpeg-dev': | |
97 | + ensure => installed, | |
98 | + } | |
99 | + | |
100 | + package { 'zlib1g-dev': | |
101 | + ensure => installed, | |
102 | + } | |
103 | + | |
104 | + package { 'libfreetype6-dev': | |
105 | + ensure => installed, | |
106 | + } | |
107 | + | |
96 | 108 | } | ... | ... |