mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-13 22:42:29 +03:00
name makebuildserver config the same as the script
This keeps the numbers of names down to a minimum, and since the config is placed right next to the script, this keeps tab completion working nicely when the config file is in place. The old file name is still supported.
This commit is contained in:
parent
25caa09420
commit
b33add9ce7
4 changed files with 11 additions and 3 deletions
26
examples/makebuildserver.config.py
Normal file
26
examples/makebuildserver.config.py
Normal file
|
@ -0,0 +1,26 @@
|
|||
#!/usr/bin/env python2
|
||||
#
|
||||
# You may want to alter these before running ./makebuildserver
|
||||
|
||||
# Name of the base box to use
|
||||
basebox = "jessie32"
|
||||
|
||||
# Location where testing32.box can be found, if you don't already have
|
||||
# it. For security reasons, it's recommended that you make your own
|
||||
# in a secure environment using trusted media (see the manual) but
|
||||
# you can use this default if you like...
|
||||
baseboxurl = "https://f-droid.org/jessie32.box"
|
||||
# or if you have a cached local copy, you can use that first:
|
||||
# baseboxurl = ["file:///home/fdroid/fdroidserver/cache/jessie32.box", "https://f-droid.org/jessie32.box"]
|
||||
|
||||
# The amount of RAM the build server will have
|
||||
memory = 3584
|
||||
|
||||
# The number of CPUs the build server will have
|
||||
cpus = 1
|
||||
|
||||
# Debian package proxy server - if you have one, e.g. "http://192.168.0.19:8000"
|
||||
aptproxy = None
|
||||
|
||||
# Set to True if your base box is 64 bit (e.g. testing32.box isn't)
|
||||
arch64 = False
|
Loading…
Add table
Add a link
Reference in a new issue