provisioners/ansible: request SSH info within provisoin [GH-3111]
This commit is contained in:
parent
0f70ce7e46
commit
5a3a501455
|
@ -7,6 +7,8 @@ BUG FIXES:
|
||||||
- core: Upgrading the home directory for Vagrant 1.5 uses the Vagrant
|
- core: Upgrading the home directory for Vagrant 1.5 uses the Vagrant
|
||||||
temp dir. [GH-3095]
|
temp dir. [GH-3095]
|
||||||
- core: Assume a box isn't metadata if it exceeds 20 MB. [GH-3107]
|
- core: Assume a box isn't metadata if it exceeds 20 MB. [GH-3107]
|
||||||
|
- provisioners/ansible: Request SSH info within the provision method,
|
||||||
|
when we know its available. [GH-3111]
|
||||||
|
|
||||||
## 1.5.0 (March 10, 2014)
|
## 1.5.0 (March 10, 2014)
|
||||||
|
|
||||||
|
|
|
@ -6,10 +6,10 @@ module VagrantPlugins
|
||||||
super
|
super
|
||||||
|
|
||||||
@logger = Log4r::Logger.new("vagrant::provisioners::ansible")
|
@logger = Log4r::Logger.new("vagrant::provisioners::ansible")
|
||||||
@ssh_info = @machine.ssh_info
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def provision
|
def provision
|
||||||
|
@ssh_info = @machine.ssh_info
|
||||||
|
|
||||||
#
|
#
|
||||||
# 1) Default Settings (lowest precedence)
|
# 1) Default Settings (lowest precedence)
|
||||||
|
|
Loading…
Reference in New Issue