/etc/default/tryton-server is in tryton-server 4.6.3-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | # Defaults for trytond initscript (sysvinit-core)
#
# Note: If your init system is systemd and you want to customize any of the
# default values, proceed like:
# cp /lib/systemd/system/tryton-server.service /etc/systemd/system
# and adapt /etc/systemd/system/tryton-server to your needs.
# Specify the user name (Default: tryton).
DAEMONUSER="tryton"
# Specify an alternate config file (Default: /etc/tryton/trytond.conf).
CONFIGFILE="/etc/tryton/trytond.conf"
# Specify the log configuration file (Default: /etc/tryton/trytond_log.conf).
LOGCONF="/etc/tryton/trytond_log.conf"
# Specify the locale for the server to run (Default: en_US).
#LANG="de_DE.UTF-8"
# Specify the database(s) for which tryton-server-cron should be run
#DATABASES=""
# Additional options that are passed to the Daemon.
# i.e. to increase the verbosity of the server log add -v
DAEMON_OPTS="--config ${CONFIGFILE} --logconf ${LOGCONF}"
|