chiark / gitweb /
Merge branch 'support-vagrant-cachier' into 'master'
[fdroidserver.git] / examples / makebs.config.py
1 #!/usr/bin/env python2
2 #
3 # You may want to alter these before running ./makebuildserver
4
5 # Name of the base box to use
6 basebox = "jessie32"
7
8 # Location where testing32.box can be found, if you don't already have
9 # it. For security reasons, it's recommended that you make your own
10 # in a secure environment using trusted media (see the manual) but
11 # you can use this default if you like...
12 baseboxurl = "https://f-droid.org/jessie32.box"
13
14 # The amount of RAM the build server will have
15 memory = 3584
16
17 # The number of CPUs the build server will have
18 cpus = 1
19
20 # Debian package proxy server - if you have one, e.g. "http://192.168.0.19:8000"
21 aptproxy = None
22
23 # Set to True if your base box is 64 bit (e.g. testing32.box isn't)
24 arch64 = False