Merge pull request #12538 from catalincezarene/catalincezarene-patch-1

Fix for :dvd example in disks configuration docs.
This commit is contained in:
Chris Roberts 2021-11-02 10:58:25 -07:00 committed by GitHub
commit 47f82b9ce1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -61,7 +61,7 @@ You can set a disk type with the first argument of a disk config in your Vagrant
```ruby
config.vm.disk :disk, name: "backup", size: "10GB"
config.vm.disk :dvd, name: "installer", path: "./installer.iso"
config.vm.disk :dvd, name: "installer", file: "./installer.iso"
config.vm.disk :floppy, name: "cool_files"
```