From c1ff0d4a7a83b2588d415d5cb849d4a6cd3570e1 Mon Sep 17 00:00:00 2001 From: meaz Date: Sun, 8 Jan 2023 20:28:17 +0100 Subject: [PATCH] add acl in vagrant file --- Vagrantfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Vagrantfile b/Vagrantfile index ea8c431..4bc00a9 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -16,5 +16,6 @@ Vagrant.configure("2") do |config| etherpad.vm.network "forwarded_port", guest: 443, host: 4444, host_ip: "192.168.33.8" etherpad.vm.network "forwarded_port", guest: 8080, host: 8081, host_ip: "192.168.33.8" etherpad.vm.network "private_network", ip: "192.168.33.8" + config.vm.provision "shell", inline: "apt install acl" end end