paths.conf (1423B)
1 [PATHS] 2 # The PATHS section is special, as filenames including $-expression are 3 # expanded using the values from PATHS or the system environment (PATHS 4 # is checked first). libgnunetutil supports expanding $-expressions using 5 # defaults with the syntax "${VAR:-default}". Here, "default" can again 6 # be a $-expression. 7 # 8 # We usually want $HOME for $CHALLENGER_HOME, but we allow testcases to 9 # easily override this by setting $CHALLENGER_TEST_HOME. 10 # 11 CHALLENGER_HOME = ${CHALLENGER_TEST_HOME:-${HOME:-${USERPROFILE}}} 12 13 # see XDG Base Directory Specification at 14 # http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html 15 # for how these should be used. 16 17 # Persistent data storage 18 CHALLENGER_DATA_HOME = ${XDG_DATA_HOME:-${CHALLENGER_HOME}/.local/share}/challenger/ 19 20 # Configuration files 21 CHALLENGER_CONFIG_HOME = ${XDG_CONFIG_HOME:-${CHALLENGER_HOME}/.config}/challenger/ 22 23 # Cached data, no big deal if lost 24 CHALLENGER_CACHE_HOME = ${XDG_CACHE_HOME:-${CHALLENGER_HOME}/.cache}/challenger/ 25 26 # Runtime data (i.e UNIX domain sockets, locks, always lost on system boot) 27 CHALLENGER_RUNTIME_DIR = ${TMPDIR:-${TMP:-/tmp}}/challenger-runtime/ 28 29 # Directory to use for temporary files. 30 CHALLENGER_TMP = ${TMPDIR:-${TMP:-/tmp}}/challenger/ 31 32 # DEFAULTCONFIG = /etc/challenger.conf 33 # If 'DEFAULTCONFIG' is not defined, the current 34 # configuration file is assumed to be the default, 35 # which is what we want by default...