Old ansible configuration for servers
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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 %}