# Defaults for tinyerp-server initscript

# Specify an alternate config file (Default: /etc/tinyerp-server.conf).
CONFIGFILE="/etc/tinyerp-server.conf"

# Specify the TCP port the server should use (Default: 8069).
PORT="8069"

# Specify the network interface the server should be bound to (Default: localhost).
INTERFACE="localhost"

# Specify the user name (Default: terp).
USER="terp"

# Specify the database name (Default: terp).
DATABASE_NAME="terp"

# Specify the database user name (Default: terp).
DATABASE_USER="terp"

# Specify the database password (Default: not set).
DATABASE_PASSWORD=""

# Specify the database host (Default: not set).
DATABASE_HOST=""

# Specify the database port (Default: not set).
DATABASE_PORT=""

# Additional options that are passed to the Daemon.
DAEMON_OPTS="--config=$CONFIGFILE --port=$PORT --interface=$INTERFACE --database=$DATABASE_NAME --db_user=$DATABASE_USER --db_password=$DATABASE_PASSWORD --db_host=$DATABASE_HOST --db_port=$DATABASE_PORT"
