website: make linked clones work w/ 1.8.0 & newer
The previous code only worked on Vagrant 1.8.x, but not on 1.9.x or newer.
This commit is contained in:
parent
159fca9d13
commit
877e7e29b1
|
@ -63,7 +63,7 @@ To have backward compatibility:
|
||||||
|
|
||||||
```ruby
|
```ruby
|
||||||
config.vm.provider 'virtualbox' do |v|
|
config.vm.provider 'virtualbox' do |v|
|
||||||
v.linked_clone = true if Vagrant::VERSION =~ /^1.8/
|
v.linked_clone = true if Vagrant::VERSION >= '1.8.0'
|
||||||
end
|
end
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue