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:
Michael Klishin 2018-11-09 02:16:51 +03:00
parent d4de4443a9
commit 6aeff4af60
No known key found for this signature in database
GPG Key ID: 2C0DA45F4F944489
1 changed files with 2 additions and 2 deletions

View File

@ -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
```