summaryrefslogtreecommitdiff
path: root/src/sync/sync.conf
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2021-09-17 11:28:41 +0200
committerChristian Grothoff <christian@grothoff.org>2021-09-17 11:28:41 +0200
commit6c9380144f0d37c2fd3fbc74824918089f2390dd (patch)
tree637068f8fdbac3db7299d7723e78484136cd9a75 /src/sync/sync.conf
parent960ab5516bdfa9bedc79b7e62fea9fcc4dd3db58 (diff)
downloadsync-6c9380144f0d37c2fd3fbc74824918089f2390dd.tar.gz
sync-6c9380144f0d37c2fd3fbc74824918089f2390dd.tar.bz2
sync-6c9380144f0d37c2fd3fbc74824918089f2390dd.zip
-try to fix Debian package and other issues
Diffstat (limited to 'src/sync/sync.conf')
-rw-r--r--src/sync/sync.conf40
1 files changed, 0 insertions, 40 deletions
diff --git a/src/sync/sync.conf b/src/sync/sync.conf
index af3203f..2eccdc1 100644
--- a/src/sync/sync.conf
+++ b/src/sync/sync.conf
@@ -42,43 +42,3 @@ PAYMENT_BACKEND_URL = http://localhost:9966/
# API key to pass when accessing the merchant backend.
# API_KEY = SECRET_VALUE
-
-# Configuration for postgres database.
-[syncdb-postgres]
-CONFIG = postgres:///sync
-
-
-[PATHS]
-# The PATHS section is special, as filenames including $-expression are
-# expanded using the values from PATHS or the system environment (PATHS
-# is checked first). libgnunetutil supports expanding $-expressions using
-# defaults with the syntax "${VAR:-default}". Here, "default" can again
-# be a $-expression.
-#
-# We usually want $HOME for $SYNC_HOME
-#
-SYNC_HOME = ${HOME:-${USERPROFILE}}
-
-# see XDG Base Directory Specification at
-# http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html
-# for how these should be used.
-
-# Persistent data storage
-SYNC_DATA_HOME = ${XDG_DATA_HOME:-$SYNC_HOME/.local/share}/sync/
-
-# Configuration files
-SYNC_CONFIG_HOME = ${XDG_CONFIG_HOME:-$SYNC_HOME/.config}/sync/
-
-# Cached data, no big deal if lost
-SYNC_CACHE_HOME = ${XDG_CACHE_HOME:-$SYNC_HOME/.cache}/sync/
-
-# Runtime data (i.e UNIX domain sockets, locks, always lost on system boot)
-SYNC_RUNTIME_DIR = ${TMPDIR:-${TMP:-/tmp}}/sync-runtime/
-
-# Directory to use for temporary files.
-SYNC_TMP = ${TMPDIR:-${TMP:-/tmp}}/sync/
-
-# DEFAULTCONFIG = /etc/sync.conf
-# If 'DEFAULTCONFIG' is not defined, the current
-# configuration file is assumed to be the default,
-# which is what we want by default...