ArchLinux_x86_64_Vagrantfile 500 B

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