summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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'
+ }
+
+
}