FreeBSD system
This commit is contained in:
parent
484b7290fa
commit
baa2041c37
|
@ -4,6 +4,7 @@
|
|||
- Internal SSH through net-ssh now uses `IdentitiesOnly` thanks to
|
||||
upstream net-ssh fix.
|
||||
- Fix issue causing warnings to show with `forwardx11` enabled for SSH. [GH-279]
|
||||
- FreeBSD support for host only networks, NFS, halting, etc. [GH-275]
|
||||
|
||||
## 0.7.0 (January 19, 2011)
|
||||
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
# These can't be autoloaded because they have to register functionality
|
||||
# with Vagrant core.
|
||||
require 'vagrant/systems/base'
|
||||
require 'vagrant/systems/freebsd'
|
||||
require 'vagrant/systems/linux'
|
||||
require 'vagrant/systems/solaris'
|
||||
|
||||
|
|
|
@ -43,6 +43,7 @@ module Vagrant
|
|||
end
|
||||
end
|
||||
|
||||
# TODO: Error/warning about this.
|
||||
# def mount_shared_folder(ssh, name, guestpath)
|
||||
# ssh.exec!("sudo mkdir -p #{guestpath}")
|
||||
# # Using a custom mount method here; could use improvement.
|
||||
|
|
|
@ -59,6 +59,7 @@ module Vagrant
|
|||
# Hard-coded internal systems
|
||||
mapping = {
|
||||
:debian => Systems::Debian,
|
||||
:freebsd => Systems::FreeBSD,
|
||||
:gentoo => Systems::Gentoo,
|
||||
:redhat => Systems::Redhat,
|
||||
:linux => Systems::Linux,
|
||||
|
|
Loading…
Reference in New Issue