summaryrefslogtreecommitdiffstats
path: root/settings.py
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2013-01-28 22:13:53 +0100
committerDan McGee <dan@archlinux.org>2013-01-28 22:13:53 +0100
commitbc539b6ed174fed1545aabaa4ceb7a7f925cbbed (patch)
tree075c71853c0d236cf7a6060e87fb15b38157929f /settings.py
parent7d4a8b9adf353d7adce4c3c22101e774092eb4de (diff)
downloadarchweb-bc539b6ed174fed1545aabaa4ceb7a7f925cbbed.tar.gz
archweb-bc539b6ed174fed1545aabaa4ceb7a7f925cbbed.tar.xz
Extract torrent trackers into a settings variable
This allows them to be overridden and changed in a central location, like we do with the SVN URL, PXE boot URL, etc. Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'settings.py')
-rw-r--r--settings.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/settings.py b/settings.py
index dbc0615..c856bf5 100644
--- a/settings.py
+++ b/settings.py
@@ -164,6 +164,12 @@ PXEBOOT_URL = 'https://releng.archlinux.org/pxeboot/'
# community bit on the end, repo.svn_root is appended)
SVN_BASE_URL = 'svn://svn.archlinux.org/'
+# Trackers used for ISO download magnet links
+TORRENT_TRACKERS = (
+ 'udp://tracker.archlinux.org:6969',
+ 'http://tracker.archlinux.org:6969/announce',
+)
+
## Import local settings
from local_settings import *