Skip to content

Commit

Permalink
Release 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jdowning committed Apr 1, 2015
1 parent 0d6b8b8 commit 6d9a669
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ require 'puppet-syntax/tasks/puppet-syntax'

Rake::Task[:lint].clear
PuppetLint::RakeTask.new :lint do |config|
config.ignore_paths = ['modules/**/**/*.pp','pkg/**/**/*.pp']
config.ignore_paths = ['modules/**/**/*.pp','pkg/**/**/*.pp','spec/fixtures/modules/**/**/*.pp']
config.log_format = '%{path}:%{linenumber}:%{KIND}: %{message}'
config.disable_checks = [ 'autoloader_layout', 'class_inherits_from_params_class']
end
Expand Down
1 change: 0 additions & 1 deletion manifests/build.pp
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,6 @@
# logic to use the selector
$patch ? { undef => '', false => '', default => ' --patch' } ], '')


exec { "own-plugins-${title}":
command => "chown -R ${owner}:${group} ${install_dir}/plugins",
user => 'root',
Expand Down
2 changes: 1 addition & 1 deletion metadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jdowning-rbenv",
"version": "1.4.1",
"version": "1.5.0",
"source": "https://github.com/justindowning/puppet-rbenv",
"author": "Justin Downing",
"license": "Apache-2.0",
Expand Down
6 changes: 2 additions & 4 deletions tests/vagrant/centos_patch.pp
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,8 @@
rbenv::plugin { 'sstephenson/ruby-build': }

# CentOS 6.6 (Final) does not have patch installed by default
package { 'patch':
ensure => 'installed',
}->
package { 'patch': }->
rbenv::build { '1.9.2-p180':
global => true,
patch => 'file:///tmp/puppet-modules/rbenv/tests/patches/1.9.2-p180_centos.patch',
patch => 'file:///tmp/puppet-modules/rbenv/tests/patches/1.9.2-p180_centos.patch',
}
2 changes: 1 addition & 1 deletion tests/vagrant/ubuntu_patch.pp
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
}->
rbenv::build { '1.9.2-p180':
global => true,
patch => 'file:///tmp/puppet-modules/rbenv/tests/patches/1.9.2-p180_ubuntu.patch',
patch => 'file:///tmp/puppet-modules/rbenv/tests/patches/1.9.2-p180_ubuntu.patch',
}

0 comments on commit 6d9a669

Please sign in to comment.