Formatting
This commit is contained in:
parent
34777fb575
commit
981b2a807d
|
@ -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
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue