Pass the start options into the actions so that they have effect
This commit is contained in:
parent
75ea4e5bdd
commit
b91d7203eb
|
@ -26,7 +26,7 @@ module VagrantPlugins
|
||||||
|
|
||||||
@logger.debug("'reload' each target VM...")
|
@logger.debug("'reload' each target VM...")
|
||||||
with_target_vms(argv) do |machine|
|
with_target_vms(argv) do |machine|
|
||||||
machine.action(:reload)
|
machine.action(:reload, options)
|
||||||
end
|
end
|
||||||
|
|
||||||
# Success, exit status 0
|
# Success, exit status 0
|
||||||
|
|
|
@ -30,7 +30,7 @@ module VagrantPlugins
|
||||||
# Go over each VM and bring it up
|
# Go over each VM and bring it up
|
||||||
@logger.debug("'Up' each target VM...")
|
@logger.debug("'Up' each target VM...")
|
||||||
with_target_vms(argv, :provider => options[:provider]) do |machine|
|
with_target_vms(argv, :provider => options[:provider]) do |machine|
|
||||||
machine.action(:up)
|
machine.action(:up, options)
|
||||||
end
|
end
|
||||||
|
|
||||||
# Success, exit status 0
|
# Success, exit status 0
|
||||||
|
|
Loading…
Reference in New Issue