Showing with 5 additions and 2 deletions.
  1. +1 −0 .travis.yml
  2. +2 −2 Modulefile
  3. +2 −0 manifests/preinstall.pp
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ rvm:

matrix:
allow_failures:
- rvm: 1.8.7
- rvm: 2.0.0
env: PUPPET_VERSION="2.7"

Expand Down
4 changes: 2 additions & 2 deletions Modulefile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name 'arioch-redis'
version '0.0.6'
version '0.0.7'
author 'Tom De Vylder'
license 'Apache License, Version 2.0'
summary 'Redis module'
description 'Redis module with cluster support'
project_page 'http://arioch.github.io/puppet-redis/'

dependency 'puppetlabs/stdlib', '>= 4.0.0'

dependency 'puppetlabs/apt', '>= 1.4.0'
2 changes: 2 additions & 0 deletions manifests/preinstall.pp
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
}

'Debian': {
include apt
apt::key { 'dotdeb':
key => '89DF5277',
key_source => 'http://www.dotdeb.org/dotdeb.gpg',
Expand All @@ -44,6 +45,7 @@
}

'Ubuntu': {
include apt
apt::ppa { $::redis::ppa_repo: }
}

Expand Down