Update CHANGELOG
This commit is contained in:
parent
2703a34b28
commit
97cf6ddfba
|
@ -37,6 +37,7 @@
|
||||||
- Automatically convert all arguments to `customize` to strings.
|
- Automatically convert all arguments to `customize` to strings.
|
||||||
- openSUSE host system. [GH-766]
|
- openSUSE host system. [GH-766]
|
||||||
- Fix subprocess IO deadlock which would occur on Windows. [GH-765]
|
- Fix subprocess IO deadlock which would occur on Windows. [GH-765]
|
||||||
|
- Fedora 16 guest support. [GH-772]
|
||||||
|
|
||||||
## 0.9.7 (February 9, 2012)
|
## 0.9.7 (February 9, 2012)
|
||||||
|
|
||||||
|
|
|
@ -174,11 +174,11 @@ Vagrant.hosts.register(:windows) { Vagrant::Hosts::Windows }
|
||||||
# Register the built-in guests
|
# Register the built-in guests
|
||||||
Vagrant.guests.register(:arch) { Vagrant::Guest::Arch }
|
Vagrant.guests.register(:arch) { Vagrant::Guest::Arch }
|
||||||
Vagrant.guests.register(:debian) { Vagrant::Guest::Debian }
|
Vagrant.guests.register(:debian) { Vagrant::Guest::Debian }
|
||||||
|
Vagrant.guests.register(:fedora) { Vagrant::Guest::Fedora }
|
||||||
Vagrant.guests.register(:freebsd) { Vagrant::Guest::FreeBSD }
|
Vagrant.guests.register(:freebsd) { Vagrant::Guest::FreeBSD }
|
||||||
Vagrant.guests.register(:gentoo) { Vagrant::Guest::Gentoo }
|
Vagrant.guests.register(:gentoo) { Vagrant::Guest::Gentoo }
|
||||||
Vagrant.guests.register(:linux) { Vagrant::Guest::Linux }
|
Vagrant.guests.register(:linux) { Vagrant::Guest::Linux }
|
||||||
Vagrant.guests.register(:redhat) { Vagrant::Guest::Redhat }
|
Vagrant.guests.register(:redhat) { Vagrant::Guest::Redhat }
|
||||||
Vagrant.guests.register(:fedora) { Vagrant::Guest::Fedora }
|
|
||||||
Vagrant.guests.register(:solaris) { Vagrant::Guest::Solaris }
|
Vagrant.guests.register(:solaris) { Vagrant::Guest::Solaris }
|
||||||
Vagrant.guests.register(:suse) { Vagrant::Guest::Suse }
|
Vagrant.guests.register(:suse) { Vagrant::Guest::Suse }
|
||||||
Vagrant.guests.register(:ubuntu) { Vagrant::Guest::Ubuntu }
|
Vagrant.guests.register(:ubuntu) { Vagrant::Guest::Ubuntu }
|
||||||
|
|
|
@ -5,11 +5,11 @@ module Vagrant
|
||||||
# Specific guests
|
# Specific guests
|
||||||
autoload :Arch, 'vagrant/guest/arch'
|
autoload :Arch, 'vagrant/guest/arch'
|
||||||
autoload :Debian, 'vagrant/guest/debian'
|
autoload :Debian, 'vagrant/guest/debian'
|
||||||
|
autoload :Fedora, 'vagrant/guest/fedora'
|
||||||
autoload :FreeBSD, 'vagrant/guest/freebsd'
|
autoload :FreeBSD, 'vagrant/guest/freebsd'
|
||||||
autoload :Gentoo, 'vagrant/guest/gentoo'
|
autoload :Gentoo, 'vagrant/guest/gentoo'
|
||||||
autoload :Linux, 'vagrant/guest/linux'
|
autoload :Linux, 'vagrant/guest/linux'
|
||||||
autoload :Redhat, 'vagrant/guest/redhat'
|
autoload :Redhat, 'vagrant/guest/redhat'
|
||||||
autoload :Fedora, 'vagrant/guest/fedora'
|
|
||||||
autoload :Solaris, 'vagrant/guest/solaris'
|
autoload :Solaris, 'vagrant/guest/solaris'
|
||||||
autoload :Suse, 'vagrant/guest/suse'
|
autoload :Suse, 'vagrant/guest/suse'
|
||||||
autoload :Ubuntu, 'vagrant/guest/ubuntu'
|
autoload :Ubuntu, 'vagrant/guest/ubuntu'
|
||||||
|
|
Loading…
Reference in New Issue