From 1b2d67afd23f52274ec20c5c487a49074ffb7a69 Mon Sep 17 00:00:00 2001 From: Nicolas Ruflin Date: Fri, 5 May 2017 14:36:17 +0200 Subject: [PATCH] Fix freebsd tests by setting hostname (#4222) On freebsd the filebeat tests fail because no hostname is set. This change sets the hostname to `beats-tester`. --- Vagrantfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Vagrantfile b/Vagrantfile index fec24ca7d1e2..47857ef61c05 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -92,6 +92,7 @@ Vagrant.configure(2) do |config| config.vm.synced_folder ".", "/vagrant", id: "vagrant-root", :nfs => true, disabled: true #config.vm.network "private_network", ip: "192.168.135.18" + freebsd.vm.hostname = "beats-tester" freebsd.vm.provision "shell", inline: $unixProvision, privileged: false end