ansible-role-zammad/defaults/main.yml

30 lines
1.1 KiB
YAML
Raw Normal View History

2021-07-28 18:28:22 +02:00
---
cron_file: /etc/cron.d/zammad
2021-11-27 20:30:23 +01:00
2021-10-27 17:08:19 +02:00
debian_version: bullseye
2021-07-28 18:28:22 +02:00
2021-11-27 20:30:23 +01:00
es_version: 7.10.2
es_url: "https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-oss-{{ es_version }}-amd64.deb"
es_dl_path: /data
es_ingest_attachment_version: 7.10.2
es_ingest_attachment_url: "https://artifacts.elastic.co/downloads/elasticsearch-plugins/ingest-attachment/ingest-attachment-{{ es_ingest_attachment_version }}.zip"
2021-07-28 18:28:22 +02:00
ruby_path: "{{ zammad_user_home }}/.rbenv"
ruby_bin_path: "{{ ruby_path }}/versions/{{ ruby_version }}/bin"
ruby_build_repo: https://github.com/rbenv/ruby-build.git
zammad_database_name: zammad
zammad_database_password: "{{ lookup('password', '/tmp/zammad_database_pwd length=42 chars=ascii_letters,digits') }}"
zammad_database_user: zammad
zammad_database_configuration: "{{ zammad_home }}/config/database.yml"
zammad_home: /opt/zammad
zammad_host: support.sao
zammad_log_file: zammad.log
zammad_log_name: zammad
zammad_log_path: /var/log/zammad
zammad_repo: https://github.com/zammad/zammad.git
zammad_user: zammad
zammad_user_home: "/home/{{ zammad_user }}"
zammad_webserver_configuration: "/etc/nginx/sites-available/{{ zammad_domain }}"