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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

27 lines
576B

  1. ---
  2. - name: timer directory
  3. file:
  4. path: "{{timer_folder}}"
  5. state: directory
  6. - name: timer config
  7. copy:
  8. content: "{{timer_config}}"
  9. dest: "{{timer_folder}}/config.json"
  10. - name: timer activity timeclock directory
  11. file:
  12. path: "{{timer_folder}}/activity.timeclock.d"
  13. state: directory
  14. - name: timer activity list directory
  15. file:
  16. path: "{{timer_folder}}/activity.lists"
  17. state: directory
  18. - name: timer default activities
  19. copy:
  20. content: "{{ default_activities | join('\n') }}"
  21. dest: "{{timer_folder}}/activity.lists/10-default"