-
Notifications
You must be signed in to change notification settings - Fork 3
/
Vagrantfile
41 lines (32 loc) · 1.1 KB
/
Vagrantfile
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# -*- mode: ruby -*-
# vi: set ft=ruby :
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure("2") do |config|
config.vm.box = "wheezy64"
config.vm.provision :file do |file|
file.source = 'conf/gpg-agent.conf'
file.destination = '/home/vagrant/.gnupg/gpg-agent.conf'
end
config.vm.provision :file do |file|
file.source = 'conf/devscripts'
file.destination = '/home/vagrant/.devscripts'
end
config.vm.provision :file do |file|
file.source = 'conf/gpg.conf'
file.destination = '/home/vagrant/.gnupg/gpg.conf'
end
config.vm.provision :file do |file|
file.source = 'conf/dput.cf'
file.destination = '/home/vagrant/.dput.cf'
end
config.vm.provision :file do |file|
file.source = 'conf/ql-to-deb.conf'
file.destination = '/home/vagrant/.config/common-lisp/source-registry.conf.d/ql-to-deb.conf'
end
config.vm.provision "shell" do |s|
s.path = "conf/bootstrap.sh"
s.privileged = false
end
config.vm.network :forwarded_port, guest: 4205, host: 4205
end