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.

testing 1.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. ---
  2. ###############################################################################
  3. # Variables used when testing with Vagrant. Secrets are stored in
  4. # `.vagrant/provisioners/ansible/inventory/secret.
  5. #
  6. # selfoss_password_hash is the SHA512 hash of `foo`
  7. #
  8. ###############################################################################
  9. # common
  10. domain: sovereign.local
  11. main_user_name: sovereign
  12. organization: testing
  13. friendly_networks:
  14. - "172.16.100.0/24"
  15. # admin email
  16. # fail2ban reports will be sent to this address
  17. admin_email: "{{ main_user_name }}@{{ domain }}"
  18. # mailserver
  19. mail_virtual_domains:
  20. - name: "{{ domain }}"
  21. pk_id: 1
  22. mail_virtual_users:
  23. - account: "{{ main_user_name }}"
  24. domain: "{{ domain }}"
  25. password: "foo"
  26. domain_pk_id: 1
  27. mail_virtual_aliases:
  28. - source: "root@{{ domain }}"
  29. destination: "{{ admin_email }}"
  30. domain_pk_id: 1
  31. - source: "postmaster@{{ domain }}"
  32. destination: "{{ admin_email }}"
  33. domain_pk_id: 1
  34. - source: "webmaster@{{ domain }}"
  35. destination: "{{ admin_email }}"
  36. domain_pk_id: 1
  37. # timezone
  38. # common_timezone will be used in the common and mailserver roles
  39. common_timezone: 'Etc/UTC'
  40. # znc
  41. irc_nick: sovereign
  42. irc_ident: sovereign
  43. irc_realname: Mr. Sovereign
  44. irc_quitmsg: Bye
  45. irc_password: "foo"
  46. irc_timezone: "America/New_York" #Example: "America/New_York"
  47. # xmpp
  48. prosody_accounts:
  49. - name: "{{ main_user_name }}"
  50. password: foo
  51. # openvpn
  52. openvpn_key_country: "US"
  53. openvpn_key_province: "California"
  54. openvpn_key_city: "Beverly Hills"
  55. openvpn_key_org: "ACME CORPORATION"
  56. openvpn_key_ou: "Anvil Department"
  57. openvpn_clients:
  58. - laptop
  59. - phone
  60. - tablet