From 83e904d06dfa1df18a95ca5e34f1809c69b8d5e8 Mon Sep 17 00:00:00 2001 From: Kyle Robbertze Date: Mon, 8 Nov 2021 10:12:00 +0200 Subject: [PATCH] fix: correct vagrantfile function call --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 69da99376..d91d61f26 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -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|