-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefaults.cfg
35 lines (27 loc) · 1.15 KB
/
defaults.cfg
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
# http://wiki.bash-hackers.org/howto/conffile
### SETTINGS
# US MIRRORS - https://www.torproject.org/mirrors.html.en
# remove trailing "/"s
MIRROR="https://dist.torproject.org"
# available locales for torbrowser (from the main mirror)
#BUNDLE_LOCALES="ar|de|en-US|es-ES|fa|fr|it|ko|nl|pl|pt-PT|ru|tr|vi|zh-CN"
# only download these wanted locales - list using a bar seperator, i.e. with a "|" between each locale
BUNDLE_LOCALES="en-US|zh-CN"
# Skip the following extensions
# !! cannot be empty - keep .gif in the bar seperated list below
# todo: need to add automagic cryptographic signature test for mar files
# todo: need to make it so this CAN be empty.
SKIP_FILES="\.mar$|\.mar.asc$|\.gif"
# where is this script located?
# $DIR is from http://stackoverflow.com/questions/59895/
DIR="$( cd "$( dirname "$0" )" && pwd )"
# temporary files
tmpdir="$DIR/tmp"
# downloaded files
dldir="$DIR/dist"
# path to list_urls.sed: http://sed.sourceforge.net/grabbag/scripts/list_urls.sed
FINDURLS="$DIR/list_urls.sed"
# detailed gpg verify results file - written to $tmpdir
result="$tmpdir/gpg-verify-results"
# or share it with your users
#result="$dldir/gpg-verify-results"