summaryrefslogtreecommitdiff
path: root/spec/acceptance/beaker/git/group_checkout/group_checkout_scp.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/acceptance/beaker/git/group_checkout/group_checkout_scp.rb')
-rw-r--r--spec/acceptance/beaker/git/group_checkout/group_checkout_scp.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/spec/acceptance/beaker/git/group_checkout/group_checkout_scp.rb b/spec/acceptance/beaker/git/group_checkout/group_checkout_scp.rb
index 0bcf143..c65acc4 100644
--- a/spec/acceptance/beaker/git/group_checkout/group_checkout_scp.rb
+++ b/spec/acceptance/beaker/git/group_checkout/group_checkout_scp.rb
@@ -7,7 +7,11 @@ group = 'mygroup'
hosts.each do |host|
tmpdir = host.tmpdir('vcsrepo')
step 'setup - create repo' do
- install_package(host, 'git')
+ git_pkg = 'git'
+ if host['platform'] =~ /ubuntu-10/
+ git_pkg = 'git-core'
+ end
+ install_package(host, git_pkg)
my_root = File.expand_path(File.join(File.dirname(__FILE__), '../../../..'))
scp_to(host, "#{my_root}/acceptance/files/create_git_repo.sh", tmpdir)
on(host, "cd #{tmpdir} && ./create_git_repo.sh")