termux-packages/scripts/Vagrantfile

38 lines
1.4 KiB
Ruby
Raw Normal View History

2017-01-03 18:05:15 +00:00
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/artful64"
2017-01-03 18:05:15 +00:00
# use vagrant-disksize plugin to resize partition - https://github.com/sprotheroe/vagrant-disksize
config.disksize.size = '50GB'
2017-01-03 18:05:15 +00:00
config.vm.provider "virtualbox" do |vb|
# Customize the amount of memory on the VM
vb.memory = "2048"
end
# Share the root of the repo
2017-01-03 18:05:15 +00:00
config.vm.synced_folder "../", "/termux-packages"
# Disable the default /vagrant share directory, as it shares the directory with the Vagrantfile in it, not the repo root
2017-01-03 18:05:15 +00:00
config.vm.synced_folder ".", "/vagrant", disabled: true
# filesystem needs to be resized
config.vm.provision "shell", inline: "sudo resize2fs /dev/sda1"
# helpful before setup-ubuntu.sh is run
config.vm.provision "shell", inline: "sudo apt-get update"
2017-01-03 18:05:15 +00:00
# Run provisioning scripts
2017-01-03 18:05:15 +00:00
config.vm.provision "shell", path: "./setup-ubuntu.sh", privileged: false
config.vm.provision "shell", path: "./setup-android-sdk.sh", privileged: false
# Fix permissions on the /data directory in order to allow the "vagrant" user to write to it
2017-01-03 18:05:15 +00:00
config.vm.provision "shell",
inline: "sudo chown -R vagrant /data"
2017-01-03 18:05:15 +00:00
# Tell the user how to use the VM
2017-01-03 18:05:15 +00:00
config.vm.post_up_message = "Box has been provisioned! Use 'vagrant ssh' to enter the box. The repository root is available under '/termux-packages'."
end