Old ansible configuration for servers
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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