Skip to content

Commit

Permalink
Merge pull request #305 from akutz/bugfix/ebs-test-vagrant-fix
Browse files Browse the repository at this point in the history
EBS Tests Vagrantfile Fixes
  • Loading branch information
akutz authored Oct 19, 2016
2 parents a3a561a + c17c969 commit c25038d
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions drivers/storage/ebs/tests/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@ SCRIPT

# rex-ray repo and branch information
$rexray_dir = "#{$gopath}/src/github.com/emccode/rexray"
$rexray_url = "https://github.com/emccode/rexray"
$rexray_ref = "master"
$rexray_url = ENV['RR_REPO'] ? ENV['RR_REPO'] : "https://github.com/emccode/rexray"
$rexray_ref = ENV['RR_REF'] ? ENV['RR_REF'] : "master"
$rexray_bin = "/usr/bin/rexray"
$rexray_cfg = "/etc/rexray/config.yml"

Expand Down Expand Up @@ -348,9 +348,9 @@ Vagrant.configure("2") do |config|

# list volume mapping with rex-ray to verify configuration
node.vm.provision "shell" do |s|
s.name = "rex-ray volume map"
s.name = "rex-ray volume ls"
s.privileged = false
s.inline = "rexray volume map"
s.inline = "rexray volume ls"
end

# copy the test plan
Expand Down Expand Up @@ -445,9 +445,9 @@ Vagrant.configure("2") do |config|

# list volume mapping with rex-ray to verify configuration
node.vm.provision "shell" do |s|
s.name = "rex-ray volume map"
s.name = "rex-ray volume ls"
s.privileged = false
s.inline = "rexray volume map"
s.inline = "rexray volume ls"
end

# copy the test plan
Expand Down Expand Up @@ -540,9 +540,9 @@ Vagrant.configure("2") do |config|

# list volume mapping with rex-ray to verify configuration
node.vm.provision "shell" do |s|
s.name = "rex-ray volume map"
s.name = "rex-ray volume ls"
s.privileged = false
s.inline = "rexray volume map"
s.inline = "rexray volume ls"
end

# copy the test plan
Expand Down

0 comments on commit c25038d

Please sign in to comment.