diff options
author | Morgan Haskel <morgan@puppetlabs.com> | 2014-10-16 14:18:51 -0700 |
---|---|---|
committer | Morgan Haskel <morgan@puppetlabs.com> | 2014-10-16 14:18:51 -0700 |
commit | e467921ee8806ac9cd15381d75e0129847125d31 (patch) | |
tree | 7c0fc3fe59b024b63df2d4969e90921f5300143b /spec | |
parent | 38c9c20c5abb5a19917ee3af9e0b6f1f1e8a0b49 (diff) | |
parent | 477c19773628c2b68c10d2bfc4dc9d6af019c2a1 (diff) | |
download | puppet-vcsrepo-e467921ee8806ac9cd15381d75e0129847125d31.tar.gz puppet-vcsrepo-e467921ee8806ac9cd15381d75e0129847125d31.tar.bz2 |
Merge pull request #211 from justinstoller/bug/master/FM-1951-ensure-git
(FM-1951) Ensure Git is installable on EL 5 platforms
Diffstat (limited to 'spec')
-rw-r--r-- | spec/spec_helper_acceptance.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/spec/spec_helper_acceptance.rb b/spec/spec_helper_acceptance.rb index f37a9b0..9ef826a 100644 --- a/spec/spec_helper_acceptance.rb +++ b/spec/spec_helper_acceptance.rb @@ -20,6 +20,7 @@ unless ENV['RS_PROVISION'] == 'no' or ENV['BEAKER_provision'] == 'no' end end + RSpec.configure do |c| # Project root proj_root = File.expand_path(File.join(File.dirname(__FILE__), '..')) @@ -35,9 +36,21 @@ RSpec.configure do |c| copy_module_to(host, :source => proj_root, :module_name => 'vcsrepo') case fact_on(host, 'osfamily') when 'RedHat' + if fact_on(host, 'operatingsystemmajrelease') == '5' + will_install_git = on(host, 'which git', :acceptable_exit_codes => [0,1]).exit_code == 1 + + if will_install_git + on host, puppet('module install stahnma-epel') + apply_manifest_on( host, 'include epel' ) + end + + end + install_package(host, 'git') + when 'Debian' install_package(host, 'git-core') + else if !check_for_package(host, 'git') puts "Git package is required for this module" |