-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathVagrantfile
More file actions
26 lines (22 loc) · 719 Bytes
/
Vagrantfile
File metadata and controls
26 lines (22 loc) · 719 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure(2) do |config|
config.vm.box = "archlinux/archlinux"
config.vm.synced_folder "scripts", "/home/vagrant/scripts"
config.ssh.username = "vagrant"
config.ssh.insert_key = false
config.vm.provision "shell", inline: <<-SHELL
#pacman-key --init
#pacman-key --populate archlinuxarm
#pacman -Syu --noconfirm
pacman -S --noconfirm wget parted dosfstools zip vi git base-devel
#git clone https://aur.archlinux.org/qemu-user-static.git
#git clone
#git clone
#cd pcre-static
#gpg --recv-keys 9766E084FB0F43D8
#cd qemu-user-static
#gpg --recv-keys CEACC9E15534EBABB82D3FA03353C9CEF108B584
#makepkg -s
SHELL
end