Old ansible configuration for servers
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.

config.yml 513B

12345678910111213141516171819202122
  1. ---
  2. user: {{ds_config_user}}
  3. password: {{ds_config_pass}}
  4. force: {{ds_config_force}}
  5. dutysheet_recipients:
  6. {% for recipient in ds_config_recipients %}
  7. - {{recipient}}
  8. {% endfor %}
  9. team_report_recipients:
  10. {% for team, recipients in ds_config_team_report_recipients.iteritems() %}
  11. {{team}}:
  12. {% for recipient in recipients %}
  13. - {{recipient}}
  14. {% endfor %}
  15. {% endfor %}
  16. duty_type_expectations:
  17. {% for team, type in ds_config_duty_type_expectations.iteritems() %}
  18. {{team}}: {{type}}
  19. {% endfor %}