Showing with 13 additions and 4 deletions.
  1. +1 −1 .fixtures.yml
  2. +9 −0 CHANGELOG
  3. +2 −2 Modulefile
  4. +1 −1 spec/classes/haproxy_spec.rb
2 changes: 1 addition & 1 deletion .fixtures.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
fixtures:
repositories:
concat: "git://github.com/ripienaar/puppet-concat.git"
concat: "git://github.com/puppetlabs/puppetlabs-concat.git"
symlinks:
haproxy: "#{source_dir}"
9 changes: 9 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
2013-10-08 - Version 0.4.1

Summary:

Fix the dependency for concat.

Fixes:
- Changed the dependency to be the puppetlabs/concat version.

2013-10-03 - Version 0.4.0

Summary:
Expand Down
4 changes: 2 additions & 2 deletions Modulefile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name 'puppetlabs-haproxy'
version '0.4.0'
version '0.4.1'
source 'git://github.com/puppetlabs/puppetlabs-haproxy'
author 'Puppet Labs'
license 'Apache License, Version 2.0'
summary 'Haproxy Module'
description 'An Haproxy module for Redhat family OSes using Storeconfigs'
project_page 'http://github.com/puppetlabs/puppetlabs-haproxy'

dependency 'ripienaar/concat', '>= 0.1.0'
dependency 'puppetlabs/concat', '>= 1.0.0'
2 changes: 1 addition & 1 deletion spec/classes/haproxy_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
'ensure' => 'present'
)
end
it 'should install the haproxy service' do
it 'should not manage the haproxy service' do
subject.should_not contain_service('haproxy')
end
end
Expand Down