diff options
author | Justin Stoller <justin.stoller@gmail.com> | 2014-10-15 12:41:46 -0700 |
---|---|---|
committer | Justin Stoller <justin.stoller@gmail.com> | 2014-10-16 13:52:53 -0700 |
commit | 477c19773628c2b68c10d2bfc4dc9d6af019c2a1 (patch) | |
tree | 7c0fc3fe59b024b63df2d4969e90921f5300143b | |
parent | 38c9c20c5abb5a19917ee3af9e0b6f1f1e8a0b49 (diff) |
(FM-1951) Ensure Git is installable on EL 5 platforms
Git is not installed on EL 5, but it is not in the repos either.
With this patch, if we are going to install git on an EL 5 platform we
first ensure epel is installed(FM-1951) Ensure Git is installable on
EL 5 platforms
-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" |