Revert "No need to use a global var here"
This reverts commit d4de4443a9.
Apparently Vagrant docs do use a global ¯\_(ツ)_/¯
This commit is contained in:
parent
d4de4443a9
commit
6aeff4af60
|
|
@ -6,7 +6,7 @@
|
|||
Debian Jesse using this `Vagrantfile`:
|
||||
|
||||
```
|
||||
script = <<SCRIPT
|
||||
$script = <<SCRIPT
|
||||
export LANG='C.UTF-8'
|
||||
export DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
|
|
@ -47,7 +47,7 @@ SCRIPT
|
|||
Vagrant.configure('2') do |config|
|
||||
config.vm.box = "debian/jessie64"
|
||||
config.vm.hostname = 'DEBIAN-JESSIE64'
|
||||
config.vm.provision 'shell', inline: script
|
||||
config.vm.provision 'shell', inline: $script
|
||||
end
|
||||
```
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue