summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThais Siqueira <thais.siqueira@gmail.com>2017-04-26 14:42:45 -0300
committerThais Siqueira <thais.siqueira@gmail.com>2017-04-26 14:46:44 -0300
commit4d4119ac1fe755b35b439c2b7f171d295f032d95 (patch)
tree8d0eb88ecce87778869971f1a198676f0a0c9303
parenta99c18a2a26b3d380f286aa4087c3cba4999ccb8 (diff)
Sets specific chromedriver and chromium versions to be compatible with tests
with @tayanefernandes
-rw-r--r--provisioning/modules/pixelated/manifests/source.pp15
1 files changed, 13 insertions, 2 deletions
diff --git a/provisioning/modules/pixelated/manifests/source.pp b/provisioning/modules/pixelated/manifests/source.pp
index 4da0669f..23546f0c 100644
--- a/provisioning/modules/pixelated/manifests/source.pp
+++ b/provisioning/modules/pixelated/manifests/source.pp
@@ -15,8 +15,7 @@ class pixelated::source {
'build-essential',
'ruby-compass',
'xvfb',
- 'xauth',
- 'chromedriver']:
+ 'xauth']:
ensure => latest
}
@@ -28,4 +27,16 @@ class pixelated::source {
install_options => [ '-o', 'APT::Install-Recommends=true'],
}
+ package {
+ 'chromium':
+ ensure => '55.0.2883.75-1~deb8u1',
+ before => Package['chromedriver']
+ }
+
+ package {
+ 'chromedriver':
+ ensure => '55.0.2883.75-1~deb8u1'
+ }
+
+
}