18 lines
957 B
Desktop File
18 lines
957 B
Desktop File
[Unit]
|
|
After=risotto.target
|
|
|
|
[Service]
|
|
Environment="PGSSLROOTCERT={{ general.tls_cert_directory }}/postgresql.crt"
|
|
Environment="PGSSLCERT={{ general.tls_cert_directory }}/postgresql.crt"
|
|
Environment="PGSSLKEY={{ general.tls_key_directory }}/postgresql.key"
|
|
Environment="PGPASSFILE=/etc/odoo/postgresql.pass"
|
|
|
|
#if database not imported, imported it active addons
|
|
{% set addons = odoo_addons|join(',') %}
|
|
ExecStartPre=/usr/bin/bash -c '/usr/bin/psql --set=sslmode=verify-full -h {{ general.postgresql.pg_client_server_domainname }} -U {{ general.postgresql.pg_client_username }} {{ general.postgresql.pg_client_database }} -c "\dt account_account" 2>&1 | grep -vq "not find" || (echo "INIT DATABASE"; /usr/bin/odoo --config /etc/odoo/odoo.conf -i {{ addons }} --stop-after-init; echo "OK")'
|
|
#change default values in database
|
|
ExecStartPre=/usr/local/lib/sbin/config_odoo.py
|
|
|
|
ExecStart=
|
|
ExecStart=/usr/bin/odoo --config /etc/odoo/odoo.conf
|
|
TimeoutStartSec=360
|