62 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Plaintext
		
	
	
			
		
		
	
	
			62 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Plaintext
		
	
	
| [options]
 | |
| addons_path = {{ odoo_config_addons_path.__class__.__name__ == 'list' and odoo_config_addons_path | join(',') or odoo_config_addons_path }}
 | |
| admin_passwd = {{ odoo_config_admin_passwd }}
 | |
| csv_internal_sep = {{ odoo_config_csv_internal_sep }}
 | |
| data_dir = {{ odoo_config_data_dir }}
 | |
| db_host = {{ odoo_config_db_host not in [False, 'localhost', '127.0.0.1'] and odoo_config_db_host in hostvars and hostvars[odoo_config_db_host].get('ansible_host') or odoo_config_db_host }}
 | |
| db_maxconn = {{ odoo_config_db_maxconn }}
 | |
| db_name = {{ odoo_config_db_name }}
 | |
| db_password = {{ odoo_config_db_passwd }}
 | |
| db_port = {{ odoo_config_db_port }}
 | |
| db_template = {{ odoo_config_db_template }}
 | |
| db_user = {{ odoo_config_db_user }}
 | |
| dbfilter = {{ odoo_config_dbfilter }}
 | |
| debug_mode = {{ odoo_config_debug_mode }}
 | |
| demo = {}
 | |
| dev_mode = False
 | |
| email_from = {{ odoo_config_email_from }}
 | |
| geoip_database = {{ odoo_config_geoip_database }}
 | |
| import_partial = 
 | |
| limit_memory_hard = {{ odoo_config_limit_memory_hard }}
 | |
| limit_memory_soft = {{ odoo_config_limit_memory_soft }}
 | |
| limit_request = 8192
 | |
| limit_time_cpu = {{ odoo_config_limit_time_cpu }}
 | |
| limit_time_real = {{ odoo_config_limit_time_real }}
 | |
| list_db = {{ odoo_config_list_db }}
 | |
| log_db = {{ odoo_config_log_db }}
 | |
| log_db_level = warning
 | |
| log_handler = :INFO
 | |
| log_level = {{ odoo_config_log_level }}
 | |
| logfile = {{ odoo_config_logfile }}
 | |
| logrotate = {{ odoo_config_logrotate }}
 | |
| longpolling_port = {{ odoo_config_longpolling_port }}
 | |
| max_cron_threads = {{ odoo_config_max_cron_threads }}
 | |
| osv_memory_age_limit = {{ odoo_config_osv_memory_age_limit }}
 | |
| osv_memory_count_limit = {{ odoo_config_osv_memory_count_limit }}
 | |
| pg_path = None
 | |
| pidfile = {{ odoo_config_pidfile }}
 | |
| proxy_mode = {{ odoo_config_proxy_mode }}
 | |
| reportgz = False
 | |
| server_wide_modules = {{ odoo_config_server_wide_modules }}
 | |
| smtp_password = {{ odoo_config_smtp_password }}
 | |
| smtp_port = {{ odoo_config_smtp_port }}
 | |
| smtp_server = {{ odoo_config_smtp_server }}
 | |
| smtp_ssl = {{ odoo_config_smtp_ssl }}
 | |
| smtp_user = {{ odoo_config_smtp_user }}
 | |
| syslog = {{ odoo_config_syslog }}
 | |
| test_commit = False
 | |
| test_enable = False
 | |
| test_file = False
 | |
| test_report_directory = False
 | |
| translate_modules = {{ odoo_config_translate_modules }}
 | |
| unaccent = {{ odoo_config_unaccent }}
 | |
| without_demo = {{ odoo_config_without_demo }}
 | |
| workers = {{ odoo_config_workers }}
 | |
| xmlrpc = {{ odoo_config_xmlrpc }}
 | |
| xmlrpc_interface = {{ odoo_config_xmlrpc_interface }}
 | |
| xmlrpc_port = {{ odoo_config_xmlrpc_port }}
 | |
| {% for name in odoo_config_custom | sort %}
 | |
| {{ name }} = {{ odoo_config_custom[name] }}
 | |
| {% endfor %}
 | |
| 
 |