123456789101112131415161718 |
- # -*- mode: ruby -*-
- # vi: set ft=ruby :
- Vagrant.configure(2) do |config|
- config.vm.box = "archlinux-x86_64"
- config.vm.provider "virtualbox" do |vb|
- # Display the VirtualBox GUI when booting the machine
- vb.gui = true
- # Customize the amount of memory on the VM:
- vb.memory = "1024"
- end
- shell_script = <<-SHELL
- yaourt -Syu --noconfirm
- yaourt --noconfirm -S clang llvm llvm-libs git ruby
- SHELL
- config.vm.provision "shell", inline: shell_script, privileged: false
- end
|