providers/virtualbox: Run post-boot after boot but before wait for SSH
[GH-2048]
This commit is contained in:
parent
283d2ae74b
commit
0f4ba6dc3b
|
@ -37,6 +37,8 @@ IMPROVEMENTS:
|
||||||
and mounting NFS. [GH-2086]
|
and mounting NFS. [GH-2086]
|
||||||
- guests/suse: Supports private/public networks. [GH-1689]
|
- guests/suse: Supports private/public networks. [GH-1689]
|
||||||
- hosts/fedora: Support RHEL as a host. [GH-2088]
|
- hosts/fedora: Support RHEL as a host. [GH-2088]
|
||||||
|
- providers/virtualbox: "post-boot" customizations will run directly
|
||||||
|
after boot, and before waiting for SSH. [GH-2048]
|
||||||
- provisioners/ansible: Ansible `inventory_path` can be a directory now. [GH-2035]
|
- provisioners/ansible: Ansible `inventory_path` can be a directory now. [GH-2035]
|
||||||
- provisioners/ansible: Extra verbose option by setting `config.verbose`
|
- provisioners/ansible: Extra verbose option by setting `config.verbose`
|
||||||
to `extra`. [GH-1979]
|
to `extra`. [GH-1979]
|
||||||
|
|
|
@ -71,8 +71,8 @@ module VagrantPlugins
|
||||||
b.use SaneDefaults
|
b.use SaneDefaults
|
||||||
b.use Customize, "pre-boot"
|
b.use Customize, "pre-boot"
|
||||||
b.use Boot
|
b.use Boot
|
||||||
b.use WaitForCommunicator, [:starting, :running]
|
|
||||||
b.use Customize, "post-boot"
|
b.use Customize, "post-boot"
|
||||||
|
b.use WaitForCommunicator, [:starting, :running]
|
||||||
b.use CheckGuestAdditions
|
b.use CheckGuestAdditions
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue