diff --git a/vagrant-test/Vagrantfile b/vagrant-test/Vagrantfile
index 9b3e4da7a53e9258674caa690b2d73e27be82acf..592647739e6d593062dc18f66dfb97be0a0b1aa5 100644
--- a/vagrant-test/Vagrantfile
+++ b/vagrant-test/Vagrantfile
@@ -1,14 +1,13 @@
 
 API_VERSION = "2"
 
-# Note: we shouldn't need to create a host entry for 'etcd', but
-# 'test.net' is a real domain with a catch-all...
+# Note: we shouldn't need to create a host entry for 'etcd'...
 $setup_host_file = <<SCRIPT
 cat >/etc/hosts <<EOF
 127.0.0.1 localhost
-192.168.50.2 node1.test.net etcd.test.net node1
-192.168.50.3 node2.test.net node2
-192.168.50.4 node3.test.net node3
+192.168.50.2 node1.autora.dio etcd.autora.dio node1
+192.168.50.3 node2.autora.dio node2
+192.168.50.4 node3.autora.dio node3
 EOF
 SCRIPT
 
@@ -20,7 +19,7 @@ Vagrant.configure(API_VERSION) do |config|
 
   config.vm.provision "shell" do |s|
     s.path = "bootstrap.sh"
-    s.args = "test.net"
+    s.args = "autora.dio"
   end
 
   config.vm.define "node1" do |m|