Formatting

This commit is contained in:
Seth Vargo 2016-05-29 00:55:04 -04:00
parent 34777fb575
commit 981b2a807d
No known key found for this signature in database
GPG Key ID: 905A90C2949E8787
1 changed files with 8 additions and 3 deletions

View File

@ -210,8 +210,13 @@ the `preserve_order: true` flag:
```ruby ```ruby
Vagrant.configure("2") do |config| Vagrant.configure("2") do |config|
config.vm.provision "do-this", type: "shell", preserve_order: true, inline: "echo FIRST!" config.vm.provision "do-this",
config.vm.provision "then-this", type: "shell", preserve_order: true, inline: "echo SECOND!" type: "shell",
preserve_order: true,
inline: "echo FIRST!"
config.vm.provision "then-this",
type: "shell",
preserve_order: true,
inline: "echo SECOND!"
end end
``` ```