Skip to content
This repository was archived by the owner on Sep 28, 2021. It is now read-only.

Commit d9ee875

Browse files
committed
Add hostname.
1 parent 4f35ffa commit d9ee875

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Vagrantfile

+3
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,15 @@ Vagrant.configure(2) do |config|
1515
config.vm.define "trusty64" do |trusty64|
1616
trusty64.vm.box = "ubuntu/trusty64"
1717

18+
trusty64.vm.hostname = "localhost.tld"
19+
1820
trusty64.vm.provider :virtualbox do |vb|
1921
vb.customize ["modifyvm", :id, "--memory", "2048"]
2022
vb.customize ["modifyvm", :id, "--cpus", "2"]
2123
end
2224

2325
trusty64.vm.provision "shell", inline: <<-SHELL
26+
# Packages
2427
sudo apt-get update
2528
sudo apt-get install -y build-essential git devscripts debhelper
2629

0 commit comments

Comments
 (0)