fix: correct vagrantfile function call

This commit is contained in:
Kyle Robbertze 2021-11-08 10:12:00 +02:00 committed by Jonas L
parent 8200df1c40
commit 83e904d06d
1 changed files with 1 additions and 1 deletions

2
Vagrantfile vendored
View File

@ -87,7 +87,7 @@ Vagrant.configure('2') do |config|
# Define all the OS boxes we support
config.vm.define "ubuntu-focal" do |os|
os.vm.box = "bento/ubuntu-20.04"
provision_libretime(os, "debian.sh", installer_args)
setup_libretime(os, "debian.sh")
end
config.vm.define 'ubuntu-bionic' do |os|