No Description
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 745B

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