Ei kuvausta
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

main.yml 781B

12345678910111213141516171819202122232425
  1. secret_root: '{{ inventory_dir | realpath }}'
  2. secret_name: 'secret'
  3. secret: '{{ secret_root + "/" + secret_name }}'
  4. # must match values in roles/common
  5. db_admin_username: 'postgres'
  6. db_admin_password: "{{ lookup('password', secret + '/' + 'db_admin_password', length=32) }}"
  7. mail_db_username: 'mailuser'
  8. mail_db_password: "{{ lookup('password', secret + '/' + 'mail_db_password', length=32) }}"
  9. mail_db_database: 'mailserver'
  10. mail_server_hostname: "mail.{{ domain }}"
  11. mail_server_autoconfig_hostname: "autoconfig.{{ domain }}"
  12. mail_header_privacy: 1
  13. # virtual domains
  14. mail_virtual_domains: []
  15. mail_virtual_users: []
  16. mail_virtual_aliases: []
  17. # zpush
  18. zpush_version: 2.1.1-1788
  19. # common_timezone is a sovereign variable
  20. zpush_timezone: "{{ common_timezone|default('Etc/UTC') }}"