fix: correct vagrantfile function call
This commit is contained in:
parent
8200df1c40
commit
83e904d06d
|
@ -87,7 +87,7 @@ Vagrant.configure('2') do |config|
|
||||||
# Define all the OS boxes we support
|
# Define all the OS boxes we support
|
||||||
config.vm.define "ubuntu-focal" do |os|
|
config.vm.define "ubuntu-focal" do |os|
|
||||||
os.vm.box = "bento/ubuntu-20.04"
|
os.vm.box = "bento/ubuntu-20.04"
|
||||||
provision_libretime(os, "debian.sh", installer_args)
|
setup_libretime(os, "debian.sh")
|
||||||
end
|
end
|
||||||
|
|
||||||
config.vm.define 'ubuntu-bionic' do |os|
|
config.vm.define 'ubuntu-bionic' do |os|
|
||||||
|
|
Loading…
Reference in New Issue