Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

36 рядки
734B

  1. ---
  2. - name: background packages
  3. apt:
  4. pkg:
  5. - mate-backgrounds
  6. - name: directory for backgrounds
  7. file:
  8. path: /opt/backgrounds
  9. state: directory
  10. - name: copy kita-pro backgrounds
  11. synchronize:
  12. src: backgrounds/
  13. dest: /opt/backgrounds
  14. perms: false
  15. owner: false
  16. group: false
  17. - name: find all other backgrounds
  18. find:
  19. paths:
  20. - /usr/share/backgrounds/mate/nature
  21. - /usr/share/backgrounds/mate/abstract
  22. recurse: yes
  23. excludes: "{{_excluded_backgrounds}}"
  24. register: _find_backgrounds
  25. - name: link background files
  26. file:
  27. src: "{{item}}"
  28. dest: "/opt/backgrounds/{{item|basename}}"
  29. state: link
  30. with_items: "{{_find_backgrounds|json_query('files[].path')}}"